diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2fa5739 --- /dev/null +++ b/.gitignore @@ -0,0 +1,156 @@ +# Python +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +pip-wheel-metadata/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.nox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +*.py,cover +.hypothesis/ +.pytest_cache/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py +db.sqlite3 +db.sqlite3-journal + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# IPython +profile_default/ +ipython_config.py + +# pyenv +.python-version + +# pipenv +Pipfile.lock + +# PEP 582 +__pypackages__/ + +# Celery stuff +celerybeat-schedule +celerybeat.pid + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json + +# Pyre type checker +.pyre/ + +# DuckHunt Bot specific +logs/ +*.log +duckhunt.log* +*.corrupted.* +*.tmp +*.backup + +# Database files (optional - uncomment if you want to ignore database) +# duckhunt.json + +# IDE files +.vscode/ +.idea/ +*.swp +*.swo +*~ + +# OS generated files +.DS_Store +.DS_Store? +._* +.Spotlight-V100 +.Trashes +ehthumbs.db +Thumbs.db + +# Temporary files +*.temp +*.temporary +temp/ +tmp/ \ No newline at end of file diff --git a/src/__pycache__/db.cpython-312.pyc b/src/__pycache__/db.cpython-312.pyc deleted file mode 100644 index e980035..0000000 Binary files a/src/__pycache__/db.cpython-312.pyc and /dev/null differ diff --git a/src/__pycache__/duckhuntbot.cpython-312.pyc b/src/__pycache__/duckhuntbot.cpython-312.pyc deleted file mode 100644 index c8d9555..0000000 Binary files a/src/__pycache__/duckhuntbot.cpython-312.pyc and /dev/null differ diff --git a/src/__pycache__/game.cpython-312.pyc b/src/__pycache__/game.cpython-312.pyc deleted file mode 100644 index c27db30..0000000 Binary files a/src/__pycache__/game.cpython-312.pyc and /dev/null differ diff --git a/src/__pycache__/levels.cpython-312.pyc b/src/__pycache__/levels.cpython-312.pyc deleted file mode 100644 index cbb20c4..0000000 Binary files a/src/__pycache__/levels.cpython-312.pyc and /dev/null differ diff --git a/src/__pycache__/logging_utils.cpython-312.pyc b/src/__pycache__/logging_utils.cpython-312.pyc deleted file mode 100644 index 2ad6c34..0000000 Binary files a/src/__pycache__/logging_utils.cpython-312.pyc and /dev/null differ diff --git a/src/__pycache__/sasl.cpython-312.pyc b/src/__pycache__/sasl.cpython-312.pyc deleted file mode 100644 index 62c30d6..0000000 Binary files a/src/__pycache__/sasl.cpython-312.pyc and /dev/null differ diff --git a/src/__pycache__/shop.cpython-312.pyc b/src/__pycache__/shop.cpython-312.pyc deleted file mode 100644 index a82f024..0000000 Binary files a/src/__pycache__/shop.cpython-312.pyc and /dev/null differ diff --git a/src/__pycache__/utils.cpython-312.pyc b/src/__pycache__/utils.cpython-312.pyc deleted file mode 100644 index 2dd808e..0000000 Binary files a/src/__pycache__/utils.cpython-312.pyc and /dev/null differ