first commit

This commit is contained in:
Lee
2024-09-21 05:38:15 +01:00
commit 1f5a1baf95
5 changed files with 264 additions and 0 deletions

30
.gitignore vendored Normal file
View File

@ -0,0 +1,30 @@
# Ignore python bytecode files
__pycache__/
# Ignore pip's log file
pip-log.txt
# Ignore the .egg-info directory created by setuptools
*.egg-info/
# Ignore the .tox directory created by tox
.tox/
# Ignore the cache directory created by pip
pip-cache/
# Ignore the .pytest_cache directory created by pytest
.pytest_cache/
# Ignore the .mypy_cache directory created by mypy
.mypy_cache/
# Ignore the .venv directory created by venv
.venv/
# Ignore the .vscode directory created by vscode
.vscode/
# Ignore the .idea directory created by intellij
.idea/