Skip to content

Commit 5ecf29b

Browse files
committed
initial commit
0 parents  commit 5ecf29b

13 files changed

+984
-0
lines changed

.gitignore

+359
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,359 @@
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+
build/
12+
develop-eggs/
13+
dist/
14+
downloads/
15+
eggs/
16+
.eggs/
17+
lib/
18+
lib64/
19+
parts/
20+
sdist/
21+
var/
22+
wheels/
23+
share/python-wheels/
24+
*.egg-info/
25+
.installed.cfg
26+
*.egg
27+
MANIFEST
28+
29+
# PyInstaller
30+
# Usually these files are written by a python script from a template
31+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
32+
*.manifest
33+
*.spec
34+
35+
# Installer logs
36+
pip-log.txt
37+
pip-delete-this-directory.txt
38+
39+
# Unit test / coverage reports
40+
htmlcov/
41+
.tox/
42+
.nox/
43+
.coverage
44+
.coverage.*
45+
.cache
46+
nosetests.xml
47+
coverage.xml
48+
*.cover
49+
*.py,cover
50+
.hypothesis/
51+
.pytest_cache/
52+
cover/
53+
54+
# Translations
55+
*.mo
56+
*.pot
57+
58+
# Django stuff:
59+
*.log
60+
local_settings.py
61+
db.sqlite3
62+
db.sqlite3-journal
63+
64+
# Flask stuff:
65+
instance/
66+
.webassets-cache
67+
68+
# Scrapy stuff:
69+
.scrapy
70+
71+
# Sphinx documentation
72+
docs/_build/
73+
74+
# PyBuilder
75+
.pybuilder/
76+
target/
77+
78+
# Jupyter Notebook
79+
.ipynb_checkpoints
80+
81+
# IPython
82+
profile_default/
83+
ipython_config.py
84+
85+
# pyenv
86+
# For a library or package, you might want to ignore these files since the code is
87+
# intended to run in multiple environments; otherwise, check them in:
88+
# .python-version
89+
90+
# pipenv
91+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
92+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
93+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
94+
# install all needed dependencies.
95+
#Pipfile.lock
96+
97+
# poetry
98+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
99+
# This is especially recommended for binary packages to ensure reproducibility, and is more
100+
# commonly ignored for libraries.
101+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
102+
#poetry.lock
103+
104+
# pdm
105+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
106+
#pdm.lock
107+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
108+
# in version control.
109+
# https://pdm.fming.dev/latest/usage/project/#working-with-version-control
110+
.pdm.toml
111+
.pdm-python
112+
.pdm-build/
113+
114+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
115+
__pypackages__/
116+
117+
# Celery stuff
118+
celerybeat-schedule
119+
celerybeat.pid
120+
121+
# SageMath parsed files
122+
*.sage.py
123+
124+
# Environment files
125+
.env
126+
.env.*
127+
!.env.example
128+
!.env.settings
129+
.venv
130+
.venv.*
131+
env/
132+
venv/
133+
ENV/
134+
env.bak/
135+
venv.bak/
136+
137+
# Spyder project settings
138+
.spyderproject
139+
.spyproject
140+
141+
# Rope project settings
142+
.ropeproject
143+
144+
# mkdocs documentation
145+
/site
146+
147+
# mypy
148+
.mypy_cache/
149+
.dmypy.json
150+
dmypy.json
151+
152+
# Pyre type checker
153+
.pyre/
154+
155+
# pytype static type analyzer
156+
.pytype/
157+
158+
# Cython debug symbols
159+
cython_debug/
160+
161+
# PyCharm
162+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
163+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
164+
# and can be added to the global gitignore or merged into this file. For a more nuclear
165+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
166+
#.idea/
167+
168+
# Android
169+
*.iml
170+
.gradle/
171+
local.properties
172+
.idea/
173+
.DS_Store
174+
build/
175+
captures/
176+
.externalNativeBuild
177+
.cxx
178+
179+
# Keystore files
180+
*.jks
181+
*.keystore
182+
!android/keystore/debug.keystore
183+
184+
# Android Studio
185+
*.iws
186+
*.ipr
187+
.idea/
188+
out/
189+
190+
# Gradle
191+
.gradle/
192+
build/
193+
gradle-app.setting
194+
!gradle-wrapper.jar
195+
.gradletasknamecache
196+
197+
# Generated files
198+
bin/
199+
gen/
200+
201+
# Log Files
202+
*.log
203+
204+
# Android Studio Navigation editor temp files
205+
.navigation/
206+
207+
# Android Studio captures folder
208+
captures/
209+
210+
# IntelliJ
211+
.idea/workspace.xml
212+
.idea/tasks.xml
213+
.idea/gradle.xml
214+
.idea/assetWizardSettings.xml
215+
.idea/dictionaries
216+
.idea/libraries
217+
.idea/caches
218+
219+
# VS Code
220+
.vscode/
221+
222+
# Sonar
223+
.sonar/
224+
.scannerwork/
225+
226+
# Test reports
227+
app/build/reports/
228+
app/build/test-results/
229+
230+
# Detekt
231+
build/reports/detekt/
232+
233+
# KtLint
234+
build/reports/ktlint/
235+
.gradle/
236+
237+
# Android Studio
238+
.idea/
239+
240+
# Xcode
241+
## User settings
242+
xcuserdata/
243+
244+
## Obj-C/Swift specific
245+
*.hmap
246+
*.ipa
247+
*.dSYM.zip
248+
*.dSYM
249+
GoogleService-Info.plist
250+
251+
## Playgrounds
252+
timeline.xctimeline
253+
playground.xcworkspace
254+
255+
# Swift Package Manager
256+
.build/
257+
Packages/
258+
Package.pins
259+
Package.resolved
260+
*.xcodeproj/*
261+
!*.xcodeproj/project.pbxproj
262+
!*.xcodeproj/xcshareddata/
263+
!*.xcodeproj/project.xcworkspace/
264+
!*.xcworkspace/contents.xcworkspacedata
265+
**/xcshareddata/WorkspaceSettings.xcsettings
266+
267+
# CocoaPods
268+
Pods/
269+
*.xcworkspace
270+
271+
# Carthage
272+
Carthage/Build/
273+
274+
# fastlane
275+
fastlane/report.xml
276+
fastlane/Preview.html
277+
fastlane/screenshots/**/*.png
278+
fastlane/test_output
279+
280+
# Code Injection
281+
iOSInjectionProject/
282+
283+
# OS X temporary files
284+
.DS_Store
285+
.AppleDouble
286+
.LSOverride
287+
288+
# Files that might appear in the root of a volume
289+
.DocumentRevisions-V100
290+
.fseventsd
291+
.Spotlight-V100
292+
.TemporaryItems
293+
.Trashes
294+
.VolumeIcon.icns
295+
.com.apple.timemachine.donotpresent
296+
297+
# Directories potentially created on remote AFP share
298+
.AppleDB
299+
.AppleDesktop
300+
Network Trash Folder
301+
Temporary Items
302+
.apdisk
303+
304+
# Config files with sensitive data
305+
Config.xcconfig
306+
307+
# Xcode backup files
308+
*.pbxproj.bak
309+
310+
# Xcode
311+
.DS_Store
312+
*/build/*
313+
*.pbxuser
314+
!default.pbxuser
315+
*.mode1v3
316+
!default.mode1v3
317+
*.mode2v3
318+
!default.mode2v3
319+
*.perspectivev3
320+
!default.perspectivev3
321+
xcuserdata
322+
*.xccheckout
323+
*.moved-aside
324+
DerivedData
325+
.idea/
326+
*.hmap
327+
*.xcuserstate
328+
*.xcworkspace
329+
!default.xcworkspace
330+
331+
# CocoaPods
332+
Pods/
333+
Podfile.lock
334+
335+
# Swift Package Manager
336+
.build/
337+
.swiftpm/
338+
ios/**/DerivedData/
339+
Package.resolved
340+
341+
# fastlane
342+
fastlane/report.xml
343+
fastlane/Preview.html
344+
fastlane/screenshots
345+
fastlane/test_output
346+
347+
# Code Coverage
348+
*.coverage.txt
349+
*.gcda
350+
*.gcno
351+
352+
# Environment variables
353+
.env
354+
.env.local
355+
Config.xcconfig
356+
357+
# Other
358+
*.log
359+
.DS_Store

0 commit comments

Comments
 (0)