File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # VS Code
2+ .vscode /*
3+ ! .vscode /settings.json
4+ ! .vscode /tasks.json
5+ ! .vscode /launch.json
6+ ! .vscode /extensions.json
7+ * .code-workspace
8+
9+ # Python
10+ __pycache__ /
11+ * .pyc
12+ * .pyo
13+ * .pyd
14+
15+ # Virtual Environments
16+ .env
17+ .venv
18+ env /
19+ venv /
20+ ENV /
21+
22+ # Distribution / packaging
23+ build /
24+ dist /
25+ * .egg-info /
26+ * .egg
27+
28+ # PyInstaller
29+ * .spec
30+
31+ # Test & Coverage
32+ .pytest_cache /
33+ .tox /
34+ htmlcov /
35+ .coverage
36+ .coverage. *
37+ .cache
38+
39+ # IDE - General
40+ .idea /
41+
42+ # OS generated files
43+ .DS_Store
44+ .DS_Store ?
45+ ._ *
46+ .Spotlight-V100
47+ .Trashes
48+ ehthumbs.db
49+ Thumbs.db
50+
51+ # Installer logs
52+ pip-log.txt
53+ pip-delete-this-directory.txt
54+
55+ # Byte-compiled / optimized / DLL files
56+ __pycache__ /
57+ * .py [cod ]
58+ * $py.class
59+
60+ # C extensions
61+ * .so
62+
63+ # Distribution / packaging
64+ .Python
65+ build /
66+ develop-eggs /
67+ dist /
68+ downloads /
69+ eggs /
70+ .eggs /
71+ lib /
72+ lib64 /
73+ parts /
74+ sdist /
75+ var /
76+ wheels /
77+ pip-wheel-metadata /
78+ share /python-wheels /
79+ * .egg-info /
80+ .installed.cfg
81+ * .egg
82+ MANIFEST
83+
84+ # Installer logs
85+ pip-log.txt
86+ pip-delete-this-directory.txt
87+
88+ # Unit test / coverage reports
89+ htmlcov /
90+ .tox /
91+ .nox /
92+ .coverage
93+ .coverage. *
94+ .cache
95+ nosetests.xml
96+ coverage.xml
97+ * .cover
98+ .pytest_cache /
99+ .hypothesis /
100+
101+ # Jupyter Notebook
102+ .ipynb_checkpoints
103+
104+ # Environments
105+ .env
106+ .venv
107+ env /
108+ venv /
109+ ENV /
110+ env.bak /
111+ venv.bak /
You can’t perform that action at this time.
0 commit comments