Skip to content
This repository was archived by the owner on Jul 28, 2023. It is now read-only.

Commit 4b8468a

Browse files
committed
init
0 parents  commit 4b8468a

File tree

1 file changed

+153
-0
lines changed

1 file changed

+153
-0
lines changed

.gitignore

Lines changed: 153 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,153 @@
1+
# Pycharm Folders
2+
.idea/
3+
4+
### macOS ###
5+
# General
6+
.DS_Store
7+
.AppleDouble
8+
.LSOverride
9+
10+
# Icon must end with two \r
11+
Icon
12+
13+
14+
# Thumbnails
15+
._*
16+
17+
# Files that might appear in the root of a volume
18+
.DocumentRevisions-V100
19+
.fseventsd
20+
.Spotlight-V100
21+
.TemporaryItems
22+
.Trashes
23+
.VolumeIcon.icns
24+
.com.apple.timemachine.donotpresent
25+
26+
# Directories potentially created on remote AFP share
27+
.AppleDB
28+
.AppleDesktop
29+
Network Trash Folder
30+
Temporary Items
31+
.apdisk
32+
33+
### VisualStudioCode ###
34+
.vscode/*
35+
!.vscode/settings.json
36+
!.vscode/tasks.json
37+
!.vscode/launch.json
38+
!.vscode/extensions.json
39+
*.code-workspace
40+
41+
### VisualStudioCode Patch ###
42+
# Ignore all local history of files
43+
.history
44+
.ionide
45+
46+
# Byte-compiled / optimized / DLL files
47+
__pycache__/
48+
*.py[cod]
49+
*$py.class
50+
51+
# C extensions
52+
*.so
53+
54+
# Distribution / packaging
55+
.Python
56+
develop-eggs/
57+
dist/
58+
downloads/
59+
eggs/
60+
.eggs/
61+
lib64/
62+
parts/
63+
sdist/
64+
var/
65+
wheels/
66+
*.egg-info/
67+
.installed.cfg
68+
*.egg
69+
MANIFEST
70+
71+
# PyInstaller
72+
# Usually these files are written by a python script from a template
73+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
74+
*.manifest
75+
*.spec
76+
77+
# Installer logs
78+
pip-log.txt
79+
pip-delete-this-directory.txt
80+
81+
# Unit test / coverage reports
82+
htmlcov/
83+
.tox/
84+
.coverage
85+
.coverage.*
86+
.cache
87+
nosetests.xml
88+
coverage.xml
89+
*.cover
90+
.hypothesis/
91+
.pytest_cache/
92+
93+
# Translations
94+
*.mo
95+
*.pot
96+
97+
# Django stuff:
98+
*.log
99+
local_settings.py
100+
db.sqlite3
101+
102+
# Flask stuff:
103+
instance/
104+
.webassets-cache
105+
106+
# Scrapy stuff:
107+
.scrapy
108+
109+
# Sphinx documentation
110+
build/_build/doctrees
111+
build/_build/_static
112+
build/_build/_templates
113+
114+
# PyBuilder
115+
target/
116+
117+
# Jupyter Notebook
118+
.ipynb_checkpoints
119+
120+
# pyenv
121+
.python-version
122+
123+
# celery beat schedule file
124+
celerybeat-schedule
125+
126+
# SageMath parsed files
127+
*.sage.py
128+
129+
# Environments
130+
.env
131+
.venv
132+
env/
133+
venv/
134+
ENV/
135+
env.bak/
136+
venv.bak/
137+
138+
# Spyder project settings
139+
.spyderproject
140+
.spyproject
141+
142+
# Rope project settings
143+
.ropeproject
144+
145+
# mkdocs documentation
146+
/site
147+
148+
# mypy
149+
.mypy_cache/
150+
151+
# Project related stuff
152+
*.env
153+
test.py

0 commit comments

Comments
 (0)