/ .gitignore
.gitignore
 1  # Python
 2  __pycache__/
 3  *.py[cod]
 4  *$py.class
 5  *.so
 6  .Python
 7  build/
 8  develop-eggs/
 9  dist/
10  downloads/
11  eggs/
12  .eggs/
13  lib/
14  lib64/
15  parts/
16  sdist/
17  var/
18  wheels/
19  *.egg-info/
20  .installed.cfg
21  *.egg
22  
23  # Virtual Environment
24  venv/
25  env/
26  ENV/
27  .env
28  .venv
29  
30  # IDE
31  .idea/
32  .vscode/
33  *.swp
34  *.swo
35  .project
36  .pydevproject
37  .settings/
38  
39  # Testing
40  .pytest_cache/
41  .coverage
42  htmlcov/
43  .tox/
44  nosetests.xml
45  coverage.xml
46  *.cover
47  .hypothesis/
48  
49  # Distribution / packaging
50  .Python
51  *.manifest
52  *.spec
53  pip-log.txt
54  pip-delete-this-directory.txt
55  
56  # Jupyter Notebook
57  .ipynb_checkpoints
58  
59  # mypy
60  .mypy_cache/
61  .dmypy.json
62  dmypy.json
63  
64  # Logs
65  *.log
66  logs/
67  
68  # Local development settings
69  .env.local
70  .env.development.local
71  .env.test.local
72  .env.production.local
73  
74  # OS generated files
75  .DS_Store
76  .DS_Store?
77  ._*
78  .Spotlight-V100
79  .Trashes
80  ehthumbs.db
81  Thumbs.db