Archivist
Preserve the web and retrieve archives with a typed Python API.
Archivist gives Python applications a consistent interface to the stable APIs published by Internet Archive and Archive.today. Search capture history, find the version nearest a point in time, or submit a page to the Wayback Machine without building around each service's response format.
Both synchronous and asynchronous clients are included, with matching models and errors.
Features
- Search Internet Archive's Wayback capture history
- Save pages through Internet Archive's Save Page Now service
- Check capture progress, service availability, and account capacity
- Browse Archive.today history and find first, latest, or closest captures
- Use the same models from synchronous and asynchronous code
- Keep credentials and sensitive URL data out of representations and logs
Installation
Archivist requires Python 3.11 or later.
uv add archivist-py
Using pip:
pip install archivist-py
Internet Archive
Find the oldest Wayback Machine capture without an account:
from archivist import (
InternetArchiveCdxRecord,
InternetArchiveCdxResult,
InternetArchiveClient,
)
with InternetArchiveClient() as client:
captures: InternetArchiveCdxResult = client.search("https://example.com/", limit=1)
oldest: InternetArchiveCdxRecord | None = next(iter(captures), None)
if oldest is not None:
print(f"{oldest.timestamp:%Y-%m-%d}: {oldest.archive_url()}")
Save a page anonymously and wait for the finished capture in one call:
from archivist import InternetArchiveClient, InternetArchiveSuccessStatus
with InternetArchiveClient() as client:
capture: InternetArchiveSuccessStatus = client.save("https://example.com/")
print(capture.archive_url())
Credentials are optional. Provide them for account features and restricted save options such as screenshots, emailed results, and WACZ files.
Archive.today
Find the oldest Archive.today capture through its Memento interface:
from archivist import ArchiveTodayClient, ArchiveTodayMemento
with ArchiveTodayClient() as client:
oldest: ArchiveTodayMemento | None = client.first("https://example.com/")
if oldest is not None:
print(f"{oldest.archived_at:%Y-%m-%d}: {oldest.archive_url}")
Archivist can browse existing Archive.today captures, but cannot create new ones because the service's bot protection prevents reliable automated access.
Async Support
Async clients mirror the synchronous API. Use AsyncInternetArchiveClient or
AsyncArchiveTodayClient with async with, then await the same operations.
Documentation
Read the full documentation for authentication, save options, async examples, error handling, and the complete API reference.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file archivist_py-1.1.0.tar.gz.
File metadata
- Download URL: archivist_py-1.1.0.tar.gz
- Upload date:
- Size: 39.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d2b64c292a1a6209bb4eae3291fb861065fac21e58ae11e7a61c22d79b820120
|
|
| MD5 |
10a742406f7290eec3e4a9220b147abe
|
|
| BLAKE2b-256 |
5e7fb9202055556e474f080fada9cd8b4d6eec253db46a5f90c774704dbad1cc
|
File details
Details for the file archivist_py-1.1.0-py3-none-any.whl.
File metadata
- Download URL: archivist_py-1.1.0-py3-none-any.whl
- Upload date:
- Size: 51.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
45c799ad52a2a46330a360a180fea6417cee33b293170da894c2523e57c4ed24
|
|
| MD5 |
a3c9b4f3b43813de5d898f8f3d259833
|
|
| BLAKE2b-256 |
d55221a2009d059c1a981f2233802061780af89906214a3bad98729cc9652ace
|