Skip to content

Commit cbe4ec8

Browse files
committed
Implement README
1 parent c4d3302 commit cbe4ec8

File tree

1 file changed

+162
-0
lines changed

1 file changed

+162
-0
lines changed

.gitignore

Lines changed: 162 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,162 @@
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+
*.egg-info/
26+
.installed.cfg
27+
*.egg
28+
MANIFEST
29+
30+
# PyInstaller
31+
# Usually these files are written by a python script from a template
32+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
33+
*.manifest
34+
*.spec
35+
36+
# Installer logs
37+
pip-log.txt
38+
pip-delete-this-directory.txt
39+
40+
# Unit test / coverage reports
41+
htmlcov/
42+
.tox/
43+
.coverage
44+
.coverage.*
45+
.cache
46+
nosetests.xml
47+
coverage.xml
48+
*.cover
49+
.hypothesis/
50+
.pytest_cache/
51+
52+
# Translations
53+
*.mo
54+
*.pot
55+
56+
# Django stuff:
57+
*.log
58+
local_settings.py
59+
db.sqlite3
60+
61+
# Flask stuff:
62+
instance/
63+
.webassets-cache
64+
65+
# Scrapy stuff:
66+
.scrapy
67+
68+
# Sphinx documentation
69+
docs/_build/
70+
71+
# PyBuilder
72+
target/
73+
74+
# Jupyter Notebook
75+
.ipynb_checkpoints
76+
77+
# pyenv
78+
.python-version
79+
80+
# celery beat schedule file
81+
celerybeat-schedule
82+
83+
# SageMath parsed files
84+
*.sage.py
85+
86+
# Environments
87+
.env
88+
.venv
89+
env/
90+
venv/
91+
ENV/
92+
env.bak/
93+
venv.bak/
94+
95+
# Spyder project settings
96+
.spyderproject
97+
.spyproject
98+
99+
# Rope project settings
100+
.ropeproject
101+
102+
# mkdocs documentation
103+
/site
104+
105+
# mypy
106+
.mypy_cache/
107+
### JetBrains template
108+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
109+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
110+
111+
# User-specific stuff
112+
.idea/**/workspace.xml
113+
.idea/**/tasks.xml
114+
.idea/**/dictionaries
115+
.idea/**/shelf
116+
117+
# Sensitive or high-churn files
118+
.idea/**/dataSources/
119+
.idea/**/dataSources.ids
120+
.idea/**/dataSources.local.xml
121+
.idea/**/sqlDataSources.xml
122+
.idea/**/dynamic.xml
123+
.idea/**/uiDesigner.xml
124+
.idea/**/dbnavigator.xml
125+
126+
# Gradle
127+
.idea/**/gradle.xml
128+
.idea/**/libraries
129+
130+
# CMake
131+
cmake-build-debug/
132+
cmake-build-release/
133+
134+
# Mongo Explorer plugin
135+
.idea/**/mongoSettings.xml
136+
137+
# File-based project format
138+
*.iws
139+
140+
# IntelliJ
141+
out/
142+
143+
# mpeltonen/sbt-idea plugin
144+
.idea_modules/
145+
146+
# JIRA plugin
147+
atlassian-ide-plugin.xml
148+
149+
# Cursive Clojure plugin
150+
.idea/replstate.xml
151+
152+
# Crashlytics plugin (for Android Studio and IntelliJ)
153+
com_crashlytics_export_strings.xml
154+
crashlytics.properties
155+
crashlytics-build.properties
156+
fabric.properties
157+
158+
# Editor-based Rest Client
159+
.idea/httpRequests
160+
161+
data/
162+

0 commit comments

Comments
 (0)