Spaces:
Runtime error
Runtime error
| # Python cache | |
| __pycache__/ | |
| *.py[cod] | |
| *$py.class | |
| *.so | |
| .Python | |
| # Virtual environments | |
| .venv/ | |
| venv/ | |
| ENV/ | |
| env/ | |
| # IDE | |
| .vscode/ | |
| .idea/ | |
| *.swp | |
| *.swo | |
| *~ | |
| # Git | |
| .git/ | |
| .gitignore | |
| .github/ | |
| # Testing | |
| .pytest_cache/ | |
| .coverage | |
| htmlcov/ | |
| *.cover | |
| # Documentation | |
| *.md | |
| !README.md | |
| docs/ | |
| # Environment files | |
| .env | |
| .env.* | |
| # Build artifacts | |
| build/ | |
| dist/ | |
| *.egg-info/ | |
| # Jupyter | |
| .ipynb_checkpoints/ | |
| *.ipynb | |
| # OS | |
| .DS_Store | |
| Thumbs.db | |
| # Temporary files | |
| tmp/ | |
| temp/ | |
| *.log | |