/ .gitignore
.gitignore
1 # ---> Python 2 # Byte-compiled / optimized / DLL files 3 __pycache__/ 4 *.py[cod] 5 *$py.class 6 7 # C extensions 8 *.so 9 10 # Distribution / packaging 11 .Python 12 env/ 13 build/ 14 develop-eggs/ 15 dist/ 16 downloads/ 17 eggs/ 18 .eggs/ 19 lib/ 20 lib64/ 21 parts/ 22 sdist/ 23 var/ 24 *.egg-info/ 25 .installed.cfg 26 *.egg 27 .venv/ 28 venv/ 29 30 # PyInstaller 31 # Usually these files are written by a python script from a template 32 # before PyInstaller builds the exe, so as to inject date/other infos into it. 33 *.manifest 34 *.spec 35 36 # Installer logs 37 pip-log.txt 38 pip-delete-this-directory.txt 39 40 # Unit test / coverage reports 41 htmlcov/ 42 .tox/ 43 .coverage 44 .coverage.* 45 .cache 46 nosetests.xml 47 coverage.xml 48 *,cover 49 50 # Translations 51 *.mo 52 *.pot 53 54 # Django stuff: 55 *.log 56 57 # Sphinx documentation 58 docs/_build/ 59 60 # PyBuilder 61 target/ 62 63 # IDE 64 .vscode/ 65 .idea/ 66