Spaces:
Sleeping
Sleeping
File size: 277 Bytes
c9df8a2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
# Ignore Python cache files
__pycache__/
*.py[cod]
*$py.class
# Ignore Jupyter Notebook checkpoints
.ipynb_checkpoints
# Ignore specific environments
env/
venv/
.venv/
# Ignore system files
.DS_Store
Thumbs.db
# Ignore other sensitive or unnecessary files
*.log
*.sqlite3
|