File tree Expand file tree Collapse file tree 1 file changed +61
-0
lines changed
Expand file tree Collapse file tree 1 file changed +61
-0
lines changed Original file line number Diff line number Diff line change 11This is a Python playground project for Daniel personal use
2+
3+ # Byte-compiled / optimized / DLL files
4+ __ pycache__ /
5+ * .py[ cod]
6+ * $py.class
7+
8+ # Distribution / packaging
9+ dist/
10+ build/
11+ * .egg-info/
12+ eggs/
13+ * .egg
14+
15+ # Virtual environments
16+ venv/
17+ env/
18+ .env/
19+ .venv/
20+ ENV/
21+
22+ # IDE specific files
23+ .idea/
24+ .vscode/
25+ * .swp
26+ * .swo
27+ .DS_Store
28+
29+ # Jupyter Notebook
30+ .ipynb_checkpoints
31+ * .ipynb
32+
33+ # Testing
34+ .coverage
35+ htmlcov/
36+ .tox/
37+ .pytest_cache/
38+ .mypy_cache/
39+
40+ # Local development settings
41+ .env
42+ .env.local
43+ * .log
44+ local_settings.py
45+
46+ # Database
47+ * .db
48+ * .sqlite3
49+ * .sqlite
50+
51+ # Documentation
52+ docs/_ build/
53+ site/
54+
55+ # Backup files
56+ * .bak
57+ * .tmp
58+ * ~
59+
60+ # Dependencies
61+ pip-log.txt
62+ pip-delete-this-directory.txt
You can’t perform that action at this time.
0 commit comments