Skip to content

Commit 2b1400b

Browse files
committed
Initial
0 parents  commit 2b1400b

22 files changed

+955
-0
lines changed

.gitignore

Lines changed: 119 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,119 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
6+
# C extensions
7+
*.so
8+
9+
# Distribution / packaging
10+
.Python
11+
build/
12+
develop-eggs/
13+
dist/
14+
downloads/
15+
eggs/
16+
.eggs/
17+
lib/
18+
lib64/
19+
parts/
20+
sdist/
21+
var/
22+
wheels/
23+
*.egg-info/
24+
.installed.cfg
25+
*.egg
26+
MANIFEST
27+
28+
# PyInstaller
29+
# Usually these files are written by a python script from a template
30+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
31+
*.manifest
32+
*.spec
33+
34+
# Installer logs
35+
pip-log.txt
36+
pip-delete-this-directory.txt
37+
38+
# Unit test / coverage reports
39+
htmlcov/
40+
.tox/
41+
.nox/
42+
.coverage
43+
*.cover
44+
coverage.xml
45+
*.rst.coverage
46+
.cache
47+
nosetests.xml
48+
coverage_html_report/
49+
coverage_html_report/index.html
50+
*.pyre/
51+
52+
# Translations
53+
*.mo
54+
*.pot
55+
56+
# Django stuff:
57+
*.log
58+
*.pot
59+
*.pyc
60+
61+
# Sphinx documentation
62+
docs/_build/
63+
site/
64+
65+
# Jupyter Notebook
66+
.ipynb_checkpoints
67+
68+
# IPython
69+
profile_default/
70+
ipython_config.py
71+
72+
# pyenv
73+
.python-version
74+
75+
# celery beat schedule file
76+
celerybeat-schedule
77+
78+
# dotenv
79+
.env
80+
.env.*
81+
82+
# virtualenv
83+
venv/
84+
ENV/
85+
env/
86+
venv.bak/
87+
.vscode/
88+
89+
# Spyder project settings
90+
.spyderproject
91+
.spyproject
92+
93+
# Rope project settings
94+
.ropeproject
95+
96+
# PyCharm
97+
.idea/
98+
99+
# mypy
100+
.mypy_cache/
101+
.dmypy.json
102+
dmypy.json
103+
104+
# Pytest
105+
.pytest_cache/
106+
107+
# Other IDEs and editors
108+
*.swp
109+
*~
110+
.project
111+
.idea/
112+
.cache
113+
.DS_Store
114+
*.tmproj
115+
*.sublime-project
116+
*.sublime-workspace
117+
118+
# Local `.env` file for configuration
119+
.env.local

0 commit comments

Comments
 (0)