Stable on-disk path where a captured session for ``site`` is saved and later auto-discovered by the syndication script.
(site: str)
| 53 | |
| 54 | |
| 55 | def default_storage_path(site: str) -> Path: |
| 56 | """Stable on-disk path where a captured session for ``site`` is saved and |
| 57 | later auto-discovered by the syndication script.""" |
| 58 | return STORAGE_STATE_DIR / f"{site}-storage-state.json" |
| 59 | |
| 60 | # Per-target site profile. Each entry knows where to land in a launched browser, |
| 61 | # which cookie domain to filter from a Firefox profile, and how to recognize |
no outgoing calls
no test coverage detected