Files
statdx/.gitignore
T
Ross e3d081cbff Add scripts for capturing network responses and extracting document content
- Implement capture_with_cdp.py to capture all network response bodies using Chrome DevTools Protocol.
- Create extract_sections.py to extract sections from STATdx snapshot HTML files into JSON Lines.
- Add unpack_document_content.py to extract `documentHtml` from captured JSON bodies and save as HTML files.
- Update .gitignore to include playwright_profile.
2025-10-14 17:44:20 +01:00

72 lines
740 B
Plaintext

# Python cache and bytecode
__pycache__/
*.py[cod]
*$py.class
# Virtual environments
env/
venv/
.venv/
ENV/
env.bak/
venv.bak/
# Distribution / packaging
build/
dist/
*.egg-info/
.eggs/
pip-wheel-metadata/
# Installer logs
pip-log.txt
pip-delete-this-directory.txt
# Test, coverage, caches
.pytest_cache/
.coverage
.coverage.*
.cache/
nosetests.xml
coverage.xml
.hypothesis/
# IDEs and editors
.vscode/
.idea/
*.swp
*.swo
# OS files
.DS_Store
Thumbs.db
# Logs and databases
*.log
*.sqlite3
*.db
# Environment/secrets
.env
.env.*
secrets.json
# Compiled extensions
*.so
*.dylib
*.dll
# Jupyter
.ipynb_checkpoints/
# Misc
*.egg
*.egg-info
*.dist-info
.chrome_profile
.playwright_profile
playwright_profile
captured/
xhr_captured/