Skip to content

Commit ce9cbba

Browse files
author
‘Java
committed
Git ignore added
1 parent dcd23ad commit ce9cbba

1 file changed

Lines changed: 122 additions & 0 deletions

File tree

.gitignore

Lines changed: 122 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,122 @@
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+
env/
12+
venv/
13+
ENV/
14+
env.bak/
15+
venv.bak/
16+
*.egg
17+
*.egg-info/
18+
dist/
19+
build/
20+
eggs/
21+
parts/
22+
var/
23+
*.manifest
24+
*.spec
25+
26+
# Installer logs
27+
pip-log.txt
28+
pip-delete-this-directory.txt
29+
30+
# Unit test / coverage reports
31+
htmlcov/
32+
.tox/
33+
.nox/
34+
.coverage
35+
.coverage.*
36+
.cache
37+
nosetests.xml
38+
coverage.xml
39+
*.cover
40+
*.py,cover
41+
.hypothesis/
42+
43+
# Translations
44+
*.mo
45+
*.pot
46+
47+
# Django stuff:
48+
*.log
49+
local_settings.py
50+
db.sqlite3
51+
db.sqlite3-journal
52+
53+
# Flask stuff:
54+
instance/
55+
.webassets-cache
56+
57+
# Scrapy stuff:
58+
.scrapy
59+
60+
# Sphinx documentation
61+
docs/_build/
62+
63+
# PyBuilder
64+
.pybuilder/
65+
target/
66+
67+
# Jupyter Notebook
68+
.ipynb_checkpoints
69+
70+
# IPython
71+
profile_default/
72+
ipython_config.py
73+
74+
# pyenv
75+
.python-version
76+
77+
# celery beat schedule file
78+
celerybeat-schedule
79+
80+
# SageMath parsed files
81+
*.sage.py
82+
83+
# Environments
84+
.env
85+
.venv
86+
env/
87+
venv/
88+
ENV/
89+
env.bak/
90+
venv.bak/
91+
92+
# Spyder project settings
93+
.spyderproject
94+
.spyproject
95+
96+
# Rope project settings
97+
.ropeproject
98+
99+
# mkdocs documentation
100+
/site
101+
102+
# mypy
103+
.mypy_cache/
104+
.dmypy.json
105+
dmypy.json
106+
107+
# Pyre type checker
108+
.pyre/
109+
110+
# pytype static type analyzer
111+
.pytype/
112+
113+
# Cython debug symbols
114+
cython_debug/
115+
116+
# PyCharm
117+
.idea/
118+
*.iml
119+
120+
# VS Code
121+
.vscode/
122+

0 commit comments

Comments
 (0)