# Byte-compiled / optimized / DLL files __pycache__/ *.pyc *.pyd *.pyo # C extensions *.so # Distribution / packaging .Python build/ develop-eggs/ dist/ eggs/ lib/ lib64/ parts/ sdist/ var/ *.egg-info/ .installed.cfg *.egg # Django stuff: *.log *.pot *.sqlite3 local_settings.py db.sqlite3 # Virtual environment venv/ env/ # IDE files .idea/ .vscode/ *.swp *.bak *.swo # OS generated files .DS_Store Thumbs.db # Testing .tox/ .coverage .pytest_cache/ htmlcov/ # Media and Static files (if served locally and not meant for version control) media/ static/ # Deployment files *.tar.gz *.zip db.sqlite3 ======= db.sqlite3 # Python # Byte-compiled / optimized / DLL files __pycache__/ # nocache: also caches module compiled version *.py[co] # CExtensions for Python *.so # Distribution / packaging .egg-info/ dist/ build/ # Installer logs pip-log.txt pip-debug.log # Unit test / coverage reports htmlcov/ .tox/ .nox/ .coverage .coverage.* nosetests.xml coverage.xml # Translations *.mo # Django stuff: # Local settings local_settings.py # Database sqlite files: # The base directory for relative paths in .gitignore # is the directory where the .gitignore file is located. # The following rules are applied in this order: # 1. If the first byte of the pattern is `!`, then remove # the file in the remaining pattern string from the index. # 2. If not otherwise ignore the file specified by the remaining # pattern string in step 1. # If a rule in .gitignore ends with a directory separator (i.e. `/` # character), then remove the file in the remaining pattern string and all # files with the same name in subdirectories. db.sqlite3