Skip to content
This repository was archived by the owner on Oct 10, 2021. It is now read-only.

Commit 9676a63

Browse files
committed
update .gitignore
1 parent fab65f4 commit 9676a63

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

84 files changed

+41
-22753
lines changed

.gitignore

Lines changed: 41 additions & 84 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,54 @@
1+
2+
__pycache__# Created by https://www.gitignore.io
3+
4+
### OSX ###
5+
.DS_Store
6+
.AppleDouble
7+
.LSOverride
8+
9+
# Icon must end with two \r
10+
Icon
11+
12+
13+
# Thumbnails
14+
._*
15+
16+
# Files that might appear on external disk
17+
.Spotlight-V100
18+
.Trashes
19+
20+
# Directories potentially created on remote AFP share
21+
.AppleDB
22+
.AppleDesktop
23+
Network Trash Folder
24+
Temporary Items
25+
.apdisk
26+
27+
28+
### Python ###
129
# Byte-compiled / optimized / DLL files
230
__pycache__/
331
*.py[cod]
4-
*$py.class
532

633
# C extensions
734
*.so
835

936
# Distribution / packaging
1037
.Python
38+
env/
1139
build/
1240
develop-eggs/
1341
dist/
1442
downloads/
1543
eggs/
16-
.eggs/
1744
lib/
1845
lib64/
1946
parts/
2047
sdist/
2148
var/
22-
wheels/
23-
share/python-wheels/
2449
*.egg-info/
2550
.installed.cfg
2651
*.egg
27-
MANIFEST
2852

2953
# PyInstaller
3054
# Usually these files are written by a python script from a template
@@ -39,100 +63,33 @@ pip-delete-this-directory.txt
3963
# Unit test / coverage reports
4064
htmlcov/
4165
.tox/
42-
.nox/
4366
.coverage
44-
.coverage.*
4567
.cache
4668
nosetests.xml
4769
coverage.xml
48-
*.cover
49-
*.py,cover
50-
.hypothesis/
51-
.pytest_cache/
52-
cover/
5370

5471
# Translations
5572
*.mo
5673
*.pot
5774

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-
7175
# Sphinx documentation
7276
docs/_build/
7377

7478
# PyBuilder
75-
.pybuilder/
7679
target/
7780

78-
# Jupyter Notebook
79-
.ipynb_checkpoints
80-
81-
# IPython
82-
profile_default/
83-
ipython_config.py
8481

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-
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
98-
__pypackages__/
99-
100-
# Celery stuff
101-
celerybeat-schedule
102-
celerybeat.pid
103-
104-
# SageMath parsed files
105-
*.sage.py
82+
### Django ###
83+
*.log
84+
*.pot
85+
*.pyc
86+
__pycache__/
87+
local_settings.py
10688

107-
# Environments
10889
.env
109-
.venv
110-
env/
111-
venv/
112-
ENV/
113-
env.bak/
114-
venv.bak/
115-
116-
# Spyder project settings
117-
.spyderproject
118-
.spyproject
119-
120-
# Rope project settings
121-
.ropeproject
122-
123-
# mkdocs documentation
124-
/site
125-
126-
# mypy
127-
.mypy_cache/
128-
.dmypy.json
129-
dmypy.json
130-
131-
# Pyre type checker
132-
.pyre/
133-
134-
# pytype static type analyzer
135-
.pytype/
136-
137-
# Cython debug symbols
138-
cython_debug/
90+
db.sqlite3
91+
.vscode
92+
venv
93+
.venv/
94+
results/
95+
vk_schema/

0 commit comments

Comments
 (0)