Python SDK for Analog — the perception layer for LLMs. Understand any website, in a format built for AIs.
Reason this release was yanked:
Superseded by 0.10.0. This version predates the current sign-in flow (retired server-side) and is below the backend's minimum supported version — it can no longer authenticate or extract. Install the current release: pip install -U analog-sdk.
Project description
analog-sdk
Python SDK for Analog — the perception layer for LLMs. Understand any website, in a format built for AIs.
Installation
uv tool install analog-sdk
This puts the analog command on your PATH in its own isolated
environment. uv manages its own Python, so
you don't need to set up a particular system Python first — Analog needs
3.10+. pipx install analog-sdk works identically; or, if you manage your
own environment, pip install analog-sdk into a Python 3.10+ virtualenv.
Analog renders every page in a real headless browser (running its JS)
before extraction, so client-side-built content — single-page apps,
infinite scroll, content that hydrates client-side — is captured by
default. The browser is built in (analog.Browser); its binaries
download automatically on first use (~150 MB, one-time). To fetch them
ahead of time — in CI or an agent harness, so the first call doesn't
pause — run:
analog browser install
Prefer a plain HTTP GET (no JS)? Pass fetcher=HttpFetcher().
Authenticate
New to Analog? analog signup opens the account-creation page
(invite code required during the private alpha). Then:
analog login
This opens your browser to sign in. The credential is minted straight
into a local store and never shown on screen, so the model driving your
session never sees it. Subsequent SDK and CLI usage picks it up
automatically; sign out any time with analog logout.
Signing in requires a browser on the machine running analog login.
Try it straight from the shell — point it at a JS-rendered page that's tedious to scrape by hand:
analog get https://greylock.com/portfolio/
One call turns the rendered portfolio into structured records — every company, with sectors, founders, and links — ready to query and export.
Run analog --help to see all commands (signup, login,
logout, whoami, status, get).
Usage
from analog import analog
result = analog("https://example.com")
Same one-liner whether or not the JS-aware fetcher is installed. When it is, JS-heavy pages just work.
See https://getanalog.io for full documentation.
Saved results
Every analog(url) call saves its result locally, so you can re-open or
re-export it later — without re-fetching or re-rendering the page:
from analog import analog, history, latest
result = analog("https://example.com")
print(result.handle) # "20260618-k7m2p9"
# Later — rehydrated from disk, no network:
again = latest() # the most recent result
print(again.markdown) # full-page markdown, stored alongside the data
for meta in history(): # everything saved, newest first
print(meta.handle, meta.url)
Re-open a specific result with analog.open(handle). Artifacts live
under your per-user cache directory (~/.cache/analog/results;
~/Library/Caches/analog/results on macOS; ANALOG_CACHE_DIR overrides)
and store only safe derivatives — the structured result and full-page
markdown, never raw HTML. Pass analog(url, save=False) to skip saving;
the store is size-bounded and drops least-recently-opened results.
From the shell, analog get <url> saves and prints the handle, and
analog history / analog open <handle> / analog export <handle> -f csv
/ analog rm <handle> manage saved results (latest works anywhere a
handle does).
Inspect a result's fields
analog describe <handle> prints field-level statistics for a saved
result — per field: coverage (how many records have the field), cardinality
(how many distinct values), where it was extracted from, semantic traits,
and a sample value. It's the quick way to tell real data from decoration
before pulling records:
analog get https://greylock.com/portfolio/ # prints a handle
analog describe <handle> # field-stats table
analog describe <handle> -f markdown # format: rich (default) | markdown | plain
Field names are best-effort deterministic heuristics — a starting point, not
ground truth. A semantically rich page like this one names cleanly; a thin,
div-soup page falls back to positional names like text_2. A positional name
means the page gave the field no usable label — not that extraction failed — so
read it as "what's here", then rename to taste in one batch, persisted to the
saved result:
analog rename-fields <handle> text_2=title text_4=site
Subsequent describe / export / distinct use the new names.
Narrow an export without writing any Python — pick columns with --fields,
filter/sort/limit rows with --where / --sort / --limit:
analog export <handle> -f csv --fields name,sector --where sector=Fintech --sort name --limit 20
--where supports field=value, field!=value, and field~value (contains);
repeat --where to AND conditions. To read a single field's distinct values:
analog distinct <handle> sector # value-counts, most frequent first
Compare two saved results to see what changed — added/removed fields, record counts, and per-field coverage/cardinality shifts:
analog diff <handleA> <handleB>
Pages with several areas
A page often has more than one repeating area — a storefront splits its catalog
across several product grids plus a reviews carousel; a reference page carries
several tables. Analog extracts each as its own section, in page order, and
describe lists them all (one stats table per section, with its heading).
Scope any tool to the sections you mean — --section (a heading label or a
0-based index) or --kind (every section of a kind):
analog describe <handle> --kind product # just the product areas
analog export <handle> -f csv --section "Solids" # one grid, by its heading
This matters because pooling unlike sections conflates them — a product grid's
name isn't a reviews carousel's reviewer name. distinct and export refuse
to silently pool across sections of different shapes; scope them, or project
shared columns with --fields.
"How many distinct products?" is the question multiple areas exist to answer. The catalog is spread across grids, and some products reappear in the reviews carousel — so the honest answer is the deduped distinct count of an identity field (a product URL) across the product sections:
analog distinct <handle> products_url --count --kind product
# 21 distinct products_url across 3 sections (24 total values)
--count treats the field as an identity key and counts it across sections,
deduping a value that appears in more than one — the count you'd otherwise
assemble by hand. analog diff is section-aware too: it matches sections across
the two results by heading / kind and diffs them like-for-like.
License
MIT — see LICENSE.
Project details
Release history Release notifications | RSS feed
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 analog_sdk-0.8.1.tar.gz.
File metadata
- Download URL: analog_sdk-0.8.1.tar.gz
- Upload date:
- Size: 144.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
67d7ff7e4a161f76d82fdc0281a59bde0eafe2841da4af9cdd3a2c242da1eece
|
|
| MD5 |
edbf9f83e16fb2fd0db461f1f2a98090
|
|
| BLAKE2b-256 |
7e22a1df7a87a31f2ff8cbe80f63812d2970a861f0399d1f627466431d1cf17d
|
Provenance
The following attestation bundles were made for analog_sdk-0.8.1.tar.gz:
Publisher:
release-sdk-python.yml on getanalog/monorepo
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
analog_sdk-0.8.1.tar.gz -
Subject digest:
67d7ff7e4a161f76d82fdc0281a59bde0eafe2841da4af9cdd3a2c242da1eece - Sigstore transparency entry: 2028375643
- Sigstore integration time:
-
Permalink:
getanalog/monorepo@9314758b38d0117bb8a8eb20fbd6cd92218cd1fe -
Branch / Tag:
refs/heads/main - Owner: https://github.com/getanalog
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-sdk-python.yml@9314758b38d0117bb8a8eb20fbd6cd92218cd1fe -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file analog_sdk-0.8.1-py3-none-any.whl.
File metadata
- Download URL: analog_sdk-0.8.1-py3-none-any.whl
- Upload date:
- Size: 114.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
868a566487cc2cbc7c4200403c39188656027829200086a6427df115c88d4ff0
|
|
| MD5 |
2baae27ec36181456998d5d42fa2097f
|
|
| BLAKE2b-256 |
f19e0407b9888e285d2d929d507d542fd92bc61bcba64241002ca8084a58fb61
|
Provenance
The following attestation bundles were made for analog_sdk-0.8.1-py3-none-any.whl:
Publisher:
release-sdk-python.yml on getanalog/monorepo
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
analog_sdk-0.8.1-py3-none-any.whl -
Subject digest:
868a566487cc2cbc7c4200403c39188656027829200086a6427df115c88d4ff0 - Sigstore transparency entry: 2028375711
- Sigstore integration time:
-
Permalink:
getanalog/monorepo@9314758b38d0117bb8a8eb20fbd6cd92218cd1fe -
Branch / Tag:
refs/heads/main - Owner: https://github.com/getanalog
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-sdk-python.yml@9314758b38d0117bb8a8eb20fbd6cd92218cd1fe -
Trigger Event:
workflow_dispatch
-
Statement type: