Skip to content

Commit c05acc0

Browse files
Update
1 parent 6b2ace9 commit c05acc0

File tree

1 file changed

+24
-175
lines changed

1 file changed

+24
-175
lines changed

.gitignore

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

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
52-
build/
53-
dist/
54-
sdist/
55-
wheels/
56-
downloads/
57-
.eggs/
58-
*.egg
12+
# Кэш pip
13+
pip-wheel-metadata/
5914
*.egg-info/
60-
.installed.cfg
61-
MANIFEST
15+
dist/
16+
build/
6217

63-
# -------------------------
64-
# Logs & Installer files
65-
# -------------------------
18+
# Логи и временные файлы
6619
*.log
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/
91-
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/
20+
*.tmp
11421

115-
# -------------------------
116-
# IDEs
117-
# -------------------------
22+
# Файлы IDE
11823
.idea/
11924
.vscode/
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
25+
*.sublime-project
26+
*.sublime-workspace
15427

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-
# -------------------------
28+
# Системные файлы
17729
.DS_Store
17830
Thumbs.db
179-
*.swp
180-
*.swo
181-
*.tmp
182-
*~
183-
*.bak
18431

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

0 commit comments

Comments
 (0)