1
0

Added the first python project, included .gitignore for ignoring the python virtual environment, added requirements for the project (which are fake as of now). Also, testing a README file change.

This commit is contained in:
s495931 2024-11-26 12:51:09 +01:00
parent dbe9acb095
commit c5df561b9e
4 changed files with 9 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/venv/

View File

@ -1 +1,4 @@
# This is a git learning... thing.
what the hell is a HEAD~1 and why does it not work in my `git reset HEAD~1`
how do pull requests work????
*this is a test change*

2
example.py Normal file
View File

@ -0,0 +1,2 @@
import bs4 #for no reason!
print("Hello Gitea!")

3
requirements.txt Normal file
View File

@ -0,0 +1,3 @@
bs4
lxml
mechanize