Spaces:
Sleeping
Sleeping
| # Git files | |
| .git | |
| .gitignore | |
| .gitattributes | |
| # Python cache | |
| __pycache__ | |
| *.py[cod] | |
| *$py.class | |
| *.so | |
| .Python | |
| *.egg-info/ | |
| dist/ | |
| build/ | |
| # Virtual environments | |
| venv/ | |
| env/ | |
| ENV/ | |
| # IDE | |
| .vscode/ | |
| .idea/ | |
| *.swp | |
| *.swo | |
| *~ | |
| # OS files | |
| .DS_Store | |
| Thumbs.db | |
| # Logs | |
| *.log | |
| # Testing | |
| .pytest_cache/ | |
| .coverage | |
| htmlcov/ | |
| # Documentation | |
| docs/ | |
| *.md.backup | |
| # Large unnecessary files | |
| *.tar.gz | |
| *.zip | |