# Python API (archivebox shell)
from archivebox.core.models import Snapshot

# 全スナップショットを取得
snapshots = Snapshot.objects.all()
for s in snapshots:
    print(s.url, s.timestamp, s.title)

# URL を追加
from archivebox import add
add(['https://example.com'], depth=0)