a b/.gitignore
1
# Created by .ignore support plugin (hsz.mobi)
2
### Python template
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
build/
14
develop-eggs/
15
dist/
16
downloads/
17
eggs/
18
.eggs/
19
lib/
20
lib64/
21
parts/
22
sdist/
23
var/
24
wheels/
25
share/python-wheels/
26
*.egg-info/
27
.installed.cfg
28
*.egg
29
MANIFEST
30
31
# PyInstaller
32
#  Usually these files are written by a python script from a template
33
#  before PyInstaller builds the exe, so as to inject date/other infos into it.
34
*.manifest
35
*.spec
36
37
# Installer logs
38
pip-log.txt
39
pip-delete-this-directory.txt
40
41
# Unit test / coverage reports
42
htmlcov/
43
.tox/
44
.nox/
45
.coverage
46
.coverage.*
47
.cache
48
nosetests.xml
49
coverage.xml
50
*.cover
51
*.py,cover
52
.hypothesis/
53
.pytest_cache/
54
cover/
55
56
# Translations
57
*.mo
58
*.pot
59
60
# Django stuff:
61
*.log
62
local_settings.py
63
db.sqlite3
64
db.sqlite3-journal
65
66
# Flask stuff:
67
instance/
68
.webassets-cache
69
70
# Scrapy stuff:
71
.scrapy
72
73
# Sphinx documentation
74
docs/_build/
75
76
# PyBuilder
77
.pybuilder/
78
target/
79
80
# Jupyter Notebook
81
.ipynb_checkpoints
82
83
# IPython
84
profile_default/
85
ipython_config.py
86
87
# pyenv
88
#   For a library or package, you might want to ignore these files since the code is
89
#   intended to run in multiple environments; otherwise, check them in:
90
# .python-version
91
92
# pipenv
93
#   According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
94
#   However, in case of collaboration, if having platform-specific dependencies or dependencies
95
#   having no cross-platform support, pipenv may install dependencies that don't work, or not
96
#   install all needed dependencies.
97
#Pipfile.lock
98
99
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
100
__pypackages__/
101
102
# Celery stuff
103
celerybeat-schedule
104
celerybeat.pid
105
106
# SageMath parsed files
107
*.sage.py
108
109
# Environments
110
.env
111
.venv
112
env/
113
venv/
114
ENV/
115
env.bak/
116
venv.bak/
117
118
# Spyder project settings
119
.spyderproject
120
.spyproject
121
122
# Rope project settings
123
.ropeproject
124
125
# mkdocs documentation
126
/site
127
128
# mypy
129
.mypy_cache/
130
.dmypy.json
131
dmypy.json
132
133
# Pyre type checker
134
.pyre/
135
136
# pytype static type analyzer
137
.pytype/
138
139
# Cython debug symbols
140
cython_debug/
141
142
### JetBrains template
143
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
144
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
145
146
# User-specific stuff
147
.idea/**/workspace.xml
148
.idea/**/tasks.xml
149
.idea/**/usage.statistics.xml
150
.idea/**/dictionaries
151
.idea/**/shelf
152
153
# Generated files
154
.idea/**/contentModel.xml
155
156
# Sensitive or high-churn files
157
.idea/**/dataSources/
158
.idea/**/dataSources.ids
159
.idea/**/dataSources.local.xml
160
.idea/**/sqlDataSources.xml
161
.idea/**/dynamic.xml
162
.idea/**/uiDesigner.xml
163
.idea/**/dbnavigator.xml
164
165
# Gradle
166
.idea/**/gradle.xml
167
.idea/**/libraries
168
169
# Gradle and Maven with auto-import
170
# When using Gradle or Maven with auto-import, you should exclude module files,
171
# since they will be recreated, and may cause churn.  Uncomment if using
172
# auto-import.
173
# .idea/artifacts
174
# .idea/compiler.xml
175
# .idea/jarRepositories.xml
176
# .idea/modules.xml
177
# .idea/*.iml
178
# .idea/modules
179
# *.iml
180
# *.ipr
181
182
# CMake
183
cmake-build-*/
184
185
# Mongo Explorer plugin
186
.idea/**/mongoSettings.xml
187
188
# File-based project format
189
*.iws
190
191
# IntelliJ
192
out/
193
194
# mpeltonen/sbt-idea plugin
195
.idea_modules/
196
197
# JIRA plugin
198
atlassian-ide-plugin.xml
199
200
# Cursive Clojure plugin
201
.idea/replstate.xml
202
203
# Crashlytics plugin (for Android Studio and IntelliJ)
204
com_crashlytics_export_strings.xml
205
crashlytics.properties
206
crashlytics-build.properties
207
fabric.properties
208
209
# Editor-based Rest Client
210
.idea/httpRequests
211
212
# Android studio 3.1+ serialized cache file
213
.idea/caches/build_file_checksums.ser
214
215
### Example user template template
216
### Example user template
217
218
# IntelliJ project files
219
.idea
220
*.iml
221
out
222
gen
223
### VirtualEnv template
224
# Virtualenv
225
# http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
226
.Python
227
[Bb]in
228
[Ii]nclude
229
[Ll]ib
230
[Ll]ib64
231
[Ll]ocal
232
[Ss]cripts
233
pyvenv.cfg
234
.venv
235
pip-selfcheck.json
236