1 .DS_Store 2 3 # Byte-compiled / optimized / DLL files 4 __pycache__/ 5 *.py[cod] 6 *$py.class 7 8 # C extensions 9 *.so 10 11 # Distribution / packaging 12 .Python 13 env/ 14 /build/ 15 develop-eggs/ 16 dist/ 17 downloads/ 18 eggs/ 19 .eggs/ 20 lib/ 21 lib64/ 22 parts/ 23 sdist/ 24 var/ 25 *.egg-info/ 26 .installed.cfg 27 *.egg 28 29 # PyInstaller 30 # Usually these files are written by a python script from a template 31 # before PyInstaller builds the exe, so as to inject date/other infos into it. 32 *.manifest 33 *.spec 34 35 # Installer logs 36 pip-log.txt 37 pip-delete-this-directory.txt 38 39 # Unit test / coverage reports 40 htmlcov/ 41 .tox/ 42 .coverage 43 .coverage.* 44 .cache 45 nosetests.xml 46 47 coverage.xml 48 *,cover 49 .hypothesis/ 50 51 # Translations 52 *.mo 53 *.pot 54 55 # Django stuff: 56 *.log 57 local_settings.py 58 59 # Flask stuff: 60 instance/ 61 .webassets-cache 62 63 # Scrapy stuff: 64 .scrapy 65 66 # Sphinx documentation 67 docs/_build/ 68 69 # IPython Notebook 70 .ipynb_checkpoints 71 72 # pyenv 73 .python-version 74 75 # celery beat schedule file 76 celerybeat-schedule 77 78 # dotenv 79 .env 80 81 # virtualenv 82 venv/ 83 ENV/ 84 85 # Spyder project settings 86 .spyderproject 87 88 # Rope project settings 89 .ropeproject 90 91 # Temporary file from text editors 92 *~ 93 *.swp 94 *.swo 95 96 # Project settings 97 .project 98 .pydevproject 99