Skip to content

Commit eecdc98

Browse files
committed
initial commit
0 parents  commit eecdc98

21 files changed

+1824
-0
lines changed

Diff for: .gitignore

+87
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
# Python
2+
__pycache__/
3+
*.py[cod]
4+
*.pyo
5+
*.pyd
6+
*.pyw
7+
*.pyz
8+
*.pyzw
9+
*.pyc
10+
11+
# Virtual Environment
12+
venv/
13+
env/
14+
env.bak/
15+
env1/
16+
env2/
17+
.env
18+
venv3.7/
19+
20+
# IDE
21+
.vscode/
22+
.idea/
23+
*.sublime-project
24+
*.sublime-workspace
25+
26+
# Logs and databases
27+
*.log
28+
*.sqlite3
29+
*.db
30+
31+
# Compiled files
32+
*.exe
33+
*.dll
34+
*.so
35+
*.dylib
36+
37+
# Miscellaneous
38+
.DS_Store
39+
Thumbs.db
40+
41+
# Distribution / packaging
42+
.Python
43+
env/
44+
build/
45+
develop-eggs/
46+
dist/
47+
downloads/
48+
eggs/
49+
.eggs/
50+
lib/
51+
lib64/
52+
parts/
53+
sdist/
54+
var/
55+
*.egg-info/
56+
.installed.cfg
57+
*.egg
58+
59+
# PyInstaller
60+
# Usually these files are written by a python script from a template
61+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
62+
*.manifest
63+
*.spec
64+
65+
# Unit test / coverage reports
66+
htmlcov/
67+
.tox/
68+
.coverage
69+
.coverage.*
70+
.cache
71+
nosetests.xml
72+
coverage.xml
73+
*,cover
74+
.hypothesis/
75+
76+
# Translations
77+
*.mo
78+
*.pot
79+
80+
# Sphinx documentation
81+
docs/_build/
82+
83+
# pyenv
84+
.python-version
85+
86+
# vscode
87+
.vscode

0 commit comments

Comments
 (0)