Spaces:
Runtime error
Runtime error
| # Git files | |
| .git | |
| .gitignore | |
| .gitattributes | |
| # Python cache | |
| __pycache__ | |
| *.pyc | |
| *.pyo | |
| *.pyd | |
| .Python | |
| *.so | |
| *.egg | |
| *.egg-info | |
| dist | |
| build | |
| # Jupyter | |
| *.ipynb | |
| .ipynb_checkpoints | |
| # IDE | |
| .vscode | |
| .idea | |
| *.swp | |
| *.swo | |
| *~ | |
| # OS | |
| .DS_Store | |
| Thumbs.db | |
| # Documentation | |
| *.md | |
| !README.md | |
| # Tests | |
| tests | |
| test_* | |
| *_test.py | |
| # Template file | |
| config_template.py | |
| # Local data | |
| data/ | |
| outputs/ | |
| temp/ | |
| tmp/ | |