Skip to content

Commit 6cbaa12

Browse files
Add _showyourwork.sqlite to .gitignore
1 parent 0e012d9 commit 6cbaa12

File tree

1 file changed

+175
-24
lines changed

1 file changed

+175
-24
lines changed

.gitignore

Lines changed: 175 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,189 @@
1-
# Игнорирование виртуальных окружений
2-
.venv/
3-
venv/
4-
venv*/
5-
ven*/
6-
7-
# Кэш и временные файлы Python
1+
# -------------------------
2+
# Python bytecode & cache
3+
# -------------------------
84
__pycache__/
5+
__pycache__
6+
*/__pycache__/
7+
__pycache__/**/
8+
**/__pycache__/
99
*.py[cod]
10+
*$py.class
1011
*.pyo
12+
*.pyd
13+
*.pyc
1114

12-
# Кэш pip
13-
pip-wheel-metadata/
14-
*.egg-info/
15-
dist/
15+
# Common typo/mistake variants
16+
pycache/
17+
PyCache/
18+
pycahce/
19+
PYCACHE/
20+
.PYCACHE/
21+
.cache/
22+
.cache/**/
23+
24+
# -------------------------
25+
# C extensions / builds
26+
# -------------------------
27+
*.so
28+
*.dll
29+
*.dylib
30+
*.o
31+
*.a
32+
33+
# -------------------------
34+
# Virtualenvs / Python environments
35+
# -------------------------
36+
.env
37+
.venv
38+
env/
39+
venv/
40+
ENV/
41+
env.bak/
42+
venv.bak/
43+
.venv.bak/
44+
env.bak/
45+
python_env/
46+
venv_env/
47+
48+
# -------------------------
49+
# Packaging
50+
# -------------------------
51+
.Python
1652
build/
53+
dist/
54+
sdist/
55+
wheels/
56+
downloads/
57+
.eggs/
58+
*.egg
59+
*.egg-info/
60+
.installed.cfg
61+
MANIFEST
1762

18-
# Логи и временные файлы
63+
# -------------------------
64+
# Logs & Installer files
65+
# -------------------------
1966
*.log
20-
*.tmp
67+
pip-log.txt
68+
pip-delete-this-directory.txt
69+
70+
# -------------------------
71+
# PyInstaller
72+
# -------------------------
73+
*.spec
74+
*.manifest
75+
76+
# -------------------------
77+
# Unit test / Coverage
78+
# -------------------------
79+
.tox/
80+
.nox/
81+
.pytest_cache/
82+
.coverage
83+
.coverage.*
84+
*.cover
85+
*.py,cover
86+
nosetests.xml
87+
coverage.xml
88+
htmlcov/
89+
.hypothesis/
90+
.coverage_cache/
2191

22-
# Файлы IDE
92+
# -------------------------
93+
# Type checkers
94+
# -------------------------
95+
.mypy_cache/
96+
.dmypy.json
97+
.dmypy.json
98+
.pytype/
99+
.pyre/
100+
.ruff_cache/
101+
102+
# -------------------------
103+
# Jupyter / IPython
104+
# -------------------------
105+
.ipynb_checkpoints
106+
profile_default/
107+
ipython_config.py
108+
109+
# -------------------------
110+
# Documentation
111+
# -------------------------
112+
docs/_build/
113+
site/
114+
115+
# -------------------------
116+
# IDEs
117+
# -------------------------
23118
.idea/
24119
.vscode/
25-
*.sublime-project
26-
*.sublime-workspace
120+
.spyderproject
121+
.spyproject
122+
.ropeproject
123+
124+
# -------------------------
125+
# Build tools / dependency managers
126+
# -------------------------
127+
.pybuilder/
128+
target/
129+
python-build/
130+
.pdm-build/
131+
.pdm-python
132+
.pdm.toml
133+
pdm.lock
134+
Pipfile.lock
135+
poetry.lock
136+
137+
# -------------------------
138+
# pyenv
139+
# -------------------------
140+
.python-version
141+
142+
# -------------------------
143+
# PEP 582
144+
# -------------------------
145+
__pypackages__/
146+
147+
# -------------------------
148+
# Frameworks
149+
# -------------------------
150+
# Django
151+
local_settings.py
152+
db.sqlite3
153+
db.sqlite3-journal
27154

28-
# Системные файлы
155+
# Flask
156+
instance/
157+
.webassets-cache
158+
159+
# Scrapy
160+
.scrapy
161+
162+
# Celery
163+
celerybeat-schedule
164+
celerybeat.pid
165+
166+
# SageMath
167+
*.sage.py
168+
169+
# -------------------------
170+
# PyPI / Private config
171+
# -------------------------
172+
.pypirc
173+
174+
# -------------------------
175+
# Custom project crap
176+
# -------------------------
29177
.DS_Store
30178
Thumbs.db
179+
*.swp
180+
*.swo
181+
*.tmp
182+
*~
183+
*.bak
31184

32-
# Исключение папок, которые не нужны
33-
utils/
34-
external_libraries/
35-
external/
36-
libraries/
37-
/project_stats.csv
38-
/project_stats.html
185+
# -------------------------
186+
# Example custom ignored file
187+
# -------------------------
188+
/data/steam_market_price.sqlite
189+
_showyourwork.sqlite

0 commit comments

Comments
 (0)