adc21f5795
- Added `capture_passive_playwright.py` for synchronous passive capture of XHR/fetch responses. - Added `capture_passive_playwright_async.py` for asynchronous passive capture using Playwright's async API. - Introduced `save_page_snapshots.py` to save full page HTML snapshots with deduplication. - Removed obsolete CSRF token capture JSON file.
73 lines
760 B
Plaintext
73 lines
760 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/
|
|
xhr_captured_async/ |