Skip to content

Commit eadc8d4

Browse files
committed
init
0 parents  commit eadc8d4

11 files changed

+187143
-0
lines changed

.gitignore

+258
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,258 @@
1+
2+
# Created by https://www.gitignore.io/api/macos,python,pycharm+all,visualstudiocode
3+
# Edit at https://www.gitignore.io/?templates=macos,python,pycharm+all,visualstudiocode
4+
5+
### macOS ###
6+
# General
7+
.DS_Store
8+
.AppleDouble
9+
.LSOverride
10+
11+
.vscode/
12+
# Icon must end with two \r
13+
Icon
14+
15+
# Thumbnails
16+
._*
17+
18+
# Files that might appear in the root of a volume
19+
.DocumentRevisions-V100
20+
.fseventsd
21+
.Spotlight-V100
22+
.TemporaryItems
23+
.Trashes
24+
.VolumeIcon.icns
25+
.com.apple.timemachine.donotpresent
26+
27+
# Directories potentially created on remote AFP share
28+
.AppleDB
29+
.AppleDesktop
30+
Network Trash Folder
31+
Temporary Items
32+
.apdisk
33+
34+
### PyCharm+all ###
35+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
36+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
37+
38+
# User-specific stuff
39+
.idea/**/workspace.xml
40+
.idea/**/tasks.xml
41+
.idea/**/usage.statistics.xml
42+
.idea/**/dictionaries
43+
.idea/**/shelf
44+
45+
# Generated files
46+
.idea/**/contentModel.xml
47+
48+
# Sensitive or high-churn files
49+
.idea/**/dataSources/
50+
.idea/**/dataSources.ids
51+
.idea/**/dataSources.local.xml
52+
.idea/**/sqlDataSources.xml
53+
.idea/**/dynamic.xml
54+
.idea/**/uiDesigner.xml
55+
.idea/**/dbnavigator.xml
56+
57+
# Gradle
58+
.idea/**/gradle.xml
59+
.idea/**/libraries
60+
61+
# Gradle and Maven with auto-import
62+
# When using Gradle or Maven with auto-import, you should exclude module files,
63+
# since they will be recreated, and may cause churn. Uncomment if using
64+
# auto-import.
65+
# .idea/modules.xml
66+
# .idea/*.iml
67+
# .idea/modules
68+
69+
# CMake
70+
cmake-build-*/
71+
72+
# Mongo Explorer plugin
73+
.idea/**/mongoSettings.xml
74+
75+
# File-based project format
76+
*.iws
77+
78+
# IntelliJ
79+
out/
80+
81+
# mpeltonen/sbt-idea plugin
82+
.idea_modules/
83+
84+
# JIRA plugin
85+
atlassian-ide-plugin.xml
86+
87+
# Cursive Clojure plugin
88+
.idea/replstate.xml
89+
90+
# Crashlytics plugin (for Android Studio and IntelliJ)
91+
com_crashlytics_export_strings.xml
92+
crashlytics.properties
93+
crashlytics-build.properties
94+
fabric.properties
95+
96+
# Editor-based Rest Client
97+
.idea/httpRequests
98+
99+
# Android studio 3.1+ serialized cache file
100+
.idea/caches/build_file_checksums.ser
101+
102+
# JetBrains templates
103+
**___jb_tmp___
104+
105+
### PyCharm+all Patch ###
106+
# Ignores the whole .idea folder and all .iml files
107+
# See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360
108+
109+
.idea/
110+
111+
# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
112+
113+
*.iml
114+
modules.xml
115+
.idea/misc.xml
116+
*.ipr
117+
118+
# Sonarlint plugin
119+
.idea/sonarlint
120+
121+
### Python ###
122+
# Byte-compiled / optimized / DLL files
123+
__pycache__/
124+
*.py[cod]
125+
*$py.class
126+
127+
# C extensions
128+
*.so
129+
130+
# Distribution / packaging
131+
.Python
132+
build/
133+
develop-eggs/
134+
dist/
135+
downloads/
136+
eggs/
137+
.eggs/
138+
lib/
139+
lib64/
140+
parts/
141+
sdist/
142+
var/
143+
wheels/
144+
pip-wheel-metadata/
145+
share/python-wheels/
146+
*.egg-info/
147+
.installed.cfg
148+
*.egg
149+
MANIFEST
150+
151+
# PyInstaller
152+
# Usually these files are written by a python script from a template
153+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
154+
*.manifest
155+
*.spec
156+
157+
# Installer logs
158+
pip-log.txt
159+
pip-delete-this-directory.txt
160+
161+
# Unit test / coverage reports
162+
htmlcov/
163+
.tox/
164+
.nox/
165+
.coverage
166+
.coverage.*
167+
.cache
168+
nosetests.xml
169+
coverage.xml
170+
*.cover
171+
.hypothesis/
172+
.pytest_cache/
173+
174+
# Translations
175+
*.mo
176+
*.pot
177+
178+
# Django stuff:
179+
*.log
180+
local_settings.py
181+
db.sqlite3
182+
183+
# Flask stuff:
184+
instance/
185+
.webassets-cache
186+
187+
# Scrapy stuff:
188+
.scrapy
189+
190+
# Sphinx documentation
191+
docs/_build/
192+
193+
# PyBuilder
194+
target/
195+
196+
# Jupyter Notebook
197+
.ipynb_checkpoints
198+
199+
# IPython
200+
profile_default/
201+
ipython_config.py
202+
203+
# pyenv
204+
.python-version
205+
206+
# pipenv
207+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
208+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
209+
# having no cross-platform support, pipenv may install dependencies that don’t work, or not
210+
# install all needed dependencies.
211+
#Pipfile.lock
212+
213+
# celery beat schedule file
214+
celerybeat-schedule
215+
216+
# SageMath parsed files
217+
*.sage.py
218+
219+
# Environments
220+
.env
221+
.venv
222+
env/
223+
venv/
224+
ENV/
225+
env.bak/
226+
venv.bak/
227+
228+
# Spyder project settings
229+
.spyderproject
230+
.spyproject
231+
232+
# Rope project settings
233+
.ropeproject
234+
235+
# mkdocs documentation
236+
/site
237+
238+
# mypy
239+
.mypy_cache/
240+
.dmypy.json
241+
dmypy.json
242+
243+
# Pyre type checker
244+
.pyre/
245+
246+
### VisualStudioCode ###
247+
.vscode/*
248+
!.vscode/settings.json
249+
!.vscode/tasks.json
250+
!.vscode/launch.json
251+
!.vscode/extensions.json
252+
253+
### VisualStudioCode Patch ###
254+
# Ignore all local history of files
255+
.history
256+
257+
# End of https://www.gitignore.io/api/macos,python,pycharm+all,visualstudiocode
258+

D_180115.pth

5.2 MB
Binary file not shown.

Pipfile

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[[source]]
2+
name = "pypi"
3+
url = "https://pypi.org/simple"
4+
verify_ssl = true
5+
6+
[dev-packages]
7+
pylint = "*"
8+
9+
[packages]
10+
11+
[requires]
12+
python_version = "3.7"

Pipfile.lock

+111
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)