-
Notifications
You must be signed in to change notification settings - Fork 0
Quick Start
Arie Joe edited this page Jun 3, 2026
·
1 revision
Download archived content into a local folder:
python -m wayback_downloader https://example.comSee what would be downloaded:
python -m wayback_downloader --list https://example.comRewrite an existing local tree for offline browsing:
python -m wayback_downloader --local-only ./websites/example.compython -m wayback_downloader https://example.compython -m wayback_downloader --local https://example.compython -m wayback_downloader --all-timestamps https://example.compython -m wayback_downloader --snapshot-at 20130101000000 https://example.compython -m wayback_downloader --from 20060101 --to 20071231 https://example.compython -m wayback_downloader --exact-url https://example.com/index.htmlpython -m wayback_downloader --page-requisites --local https://example.compython -m wayback_downloader --page-requisites --cross-host --local https://example.compython -m wayback_downloader --recursive-subdomains --subdomain-depth 2 https://example.com- Use the default mode when you want one clean offline tree.
- Use
--all-timestampswhen historical completeness matters more than a neat website-like output. - Use
--snapshot-atwhen you want the closest approximation of the site at a given moment. - Use
--listbefore a large run if you want to inspect the planned scope.