Skip to content

Commit c5f2a80

Browse files
committed
initial add
0 parents  commit c5f2a80

24 files changed

+1897
-0
lines changed

.gitignore

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

0 commit comments

Comments
 (0)