Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

vocab-bloom-hub

Typed Python client for the public read-only API of a Vocab Bloom Hub instance — an English dictionary with IPA, CEFR levels, sense-level definitions, examples, translations (Russian, Spanish, French, German, Portuguese) and inflected forms, served under /api/v1.

  • Sync (VocabBloomClient) and async (AsyncVocabBloomClient) on httpx; one method per endpoint.
  • pydantic models generated from the server's OpenAPI document — the types cannot drift from the API.
  • Typed exceptions, cursor iteration, optional ETag cache, words_dataframe() for notebooks.
  • Python 3.10+; dependencies: httpx, pydantic (pandas optional).

Install

pip install --pre vocab-bloom-hub
# with pandas support
pip install --pre "vocab-bloom-hub[pandas]"

--pre is needed while only prereleases exist (0.1.0a1, PEP 440 for 0.1.0-alpha.1) — pip skips them by default; from the first stable release a plain pip install vocab-bloom-hub works.

Quick start

from vocab_bloom_hub import NotFoundError, VocabBloomClient

client = VocabBloomClient("https://dict.example.com")

# search: relevance tiers, typo tolerance
result = client.search("definately")
print(result.meta.fuzzy, result.data[0].word)  # True definitely

# a headword with every part of speech, forms, meanings and translations
try:
    run = client.word("run")
    print(run.data[0].meanings[0].definition)
except NotFoundError:
    print("no such word")

# walk the whole dictionary, page after page
for word in client.iter_words(word_level=["A1", "A2"], with_meanings=True):
    print(word.word, len(word.meanings))

# a notebook: the filtered list as a DataFrame (pip install "vocab-bloom-hub[pandas]")
frame = client.words_dataframe(part_of_speech=["noun"], category=["IT"])

Async, the same methods awaited:

from vocab_bloom_hub import AsyncVocabBloomClient

async with AsyncVocabBloomClient("https://dict.example.com") as client:
    meta = await client.meta()
    async for word in client.iter_words(limit=100):
        ...

API

Method Endpoint Answer
search(search, *, type, limit) GET /search SearchResponse
search_detailed(search, *, ...) GET /search/detailed DetailedSearchResponse
word(headword) GET /words/{word} HeadwordResponse
words_batch(words) POST /words/batch WordsBatchResponse — up to 50 headwords, one rate-limit unit; misses under meta.not_found
word_by_id(id) GET /words/id/{id} WordResponse
meanings(headword) GET /words/{word}/meanings MeaningsResponse
translations(headword, *, language) GET /words/{word}/translations TranslationsResponse
forms(headword) GET /words/{word}/forms FormsResponse
synonyms(headword) GET /words/{word}/synonyms LinksResponse — the linked headwords per meaning
antonyms(headword) GET /words/{word}/antonyms LinksResponse
words(**filters, cursor, limit, with_...) GET /words WordsResponse (one page)
iter_words(**filters, ...) GET /words, following the cursor Iterator[Word]
iter_search_detailed(search, *, ...) GET /search/detailed, page after page Iterator[Word] — stops at the server's page cap (DETAILED_SEARCH_MAX_PAGE, 20)
random(**filters) GET /random WordResponse
meta() GET /meta MetaResponse
openapi() GET /openapi.json dict — the OpenAPI document
suggest(headword, ...) POST /suggestions SuggestionCreatedResponse — files a reader report (or an edit proposal) into the instance's moderation queue
words_dataframe(**filters, ...) GET /words, every page pandas.DataFrame (sync and async clients)

Every response is the { data, meta } envelope the API answers with, as a pydantic model. Filters (part_of_speech, word_level, language_register, category, area_variant, form_of_word) take lists of strings or of the exported enums (PartOfSpeech, WordLevel, ...); values of one filter are OR-ed, different filters are AND-ed. The contract itself — tiers, filters, cursor pagination, caching — is documented in the server's docs/api.md.

Options

VocabBloomClient(
    "https://dict.example.com",  # origin of the instance; /api/v1 is appended
    headers={"X-App": "my-app"},  # sent with every request
    timeout=10.0,  # seconds, or an httpx.Timeout
    cache=True,  # ETag revalidation (below); or your own ResponseCache
    retry={
        "attempts": 3,
        "backoff": 0.5,
        "max_delay": 60.0,
    },  # opt-in: retry the GET reads on 429 / 5xx (below)
    transport=...,  # a custom httpx transport (tests, instrumentation)
)

Use the client as a context manager (with / async with) to close the connection pool.

Errors

Exception When Fields
NotFoundError 404 status, code (word_doesnt_found), body
RateLimitError 429 — the public rate limit retry_after (seconds, from Retry-After)
NetworkError no answer: DNS, connection, TLS, timeout status == 0, code == "network_error"
VocabBloomError everything else status, code, body

code is the machine-readable error of the API (invalid_cursor, too_many_requests, ...), or http_error when the answer was not JSON (a proxy page, for instance).

Without the retry option the client never retries on its own: a RateLimitError carries retry_after (seconds) and backoff is the caller's decision.

Per-request options

Every method takes options= — a RequestOptions dict with headers (merged over the client's for that call) and timeout (seconds or an httpx.Timeout, replacing the client's) — the counterpart of the Node client's last argument:

client.word("run", options={"headers": {"X-Request-Id": "abc"}, "timeout": 2.0})

Every request carries User-Agent: vocab-bloom-hub-python/<version> (vocab_bloom_hub.USER_AGENT) so an operator can tell SDK traffic apart in the log; pass your own User-Agent in headers to replace it.

Retry

Off by default — the client documents exact request counts against the rate limit, so the loop is opt-in. With retry={} (or explicit attempts / backoff) a GET answered 429 or 5xx is sent again: after Retry-After when the server sent it, otherwise after backoff, then twice that, and so on, up to attempts tries in total (the first one included; 3 and 0.5 s by default); no single wait exceeds max_delay seconds (60 by default), whatever Retry-After says. POST requests (the batch lookup, a suggestion), 4xx answers and network errors are never retried.

ETag cache

With cache=True every GET answer is kept in memory per URL together with its ETag; the next read of the same URL sends If-None-Match and, on 304 Not Modified, returns the kept body — the round trip stays, the payload does not. MemoryCache holds 500 entries (least recently used out); pass any object with get(url) / set(url, entry) for a store of your own. Off by default.

Development

cd packages/python-sdk
uv sync                                           # Python 3.12 + dependencies into .venv
uv run python scripts/generate_models.py          # models from apps/server/openapi/public-v1.json
uv run python scripts/generate_models.py --check  # fail when the generated models are stale (CI)
uv run ruff check . && uv run ruff format --check . && uv run mypy
uv run pytest                                     # unit tests + the client against the real server

src/vocab_bloom_hub/_generated/models.py is produced by datamodel-code-generator from the committed public spec and committed itself: a contract change on the server shows up as a diff here, and tests/test_contract.py fails until every operation of the spec has a client method. The live tests start the server through yarn workspace server fixture:public-api (Node.js and the monorepo's dependencies installed), on an in-memory SQLite database.

License

MIT — the dictionary data an instance serves is CC BY 4.0.

Release files for vocab-bloom-hub 0.2.0b1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for vocab-bloom-hub 0.2.0b1
File Size Uploaded
vocab_bloom_hub-0.2.0b1.tar.gz 124.3 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for vocab-bloom-hub 0.2.0b1
File Interpreter ABI Platform
vocab_bloom_hub-0.2.0b1-py3-none-any.whl Python 3 none any Details

Total release size: 147.1 kB

Release files / vocab_bloom_hub-0.2.0b1.tar.gz

Download URL vocab_bloom_hub-0.2.0b1.tar.gz
Size 124.3 kB
Tags Source
SHA-256 checksum
How to use checksums
a6ba1f22531889ce7842abaff37d8520aefbc5e642e9d7fc18d13a92ce34b9ee
BLAKE2b-256 checksum
How to use checksums
b70abcea7656fcab178620aa4772287ffffafc9b0c44486537a05cac58f67a66
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.

Transparency log

Release files / vocab_bloom_hub-0.2.0b1-py3-none-any.whl

Download URL vocab_bloom_hub-0.2.0b1-py3-none-any.whl
Size 22.8 kB
Tags Python 3
SHA-256 checksum
How to use checksums
d774d0c976ab990d252ade5a882f20640a8ce4c62631dee18349c7274d40f954
BLAKE2b-256 checksum
How to use checksums
afbcd278dfb0ea02a0e22e6773826ad4bc6da8ef669b4d4cd28a597d90a6faab
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.

Transparency log
Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page