Skip to main content

negirau

PyPI version Python Versions License CI uv Ruff ty

Python client for the Negirau public API (read-only, anonymous).

Hand-written around resource namespaces, a types package, a typed exception hierarchy, and retries with exponential backoff — and kept honest by contract tests: they load the service's build-time-generated openapi.json and prove that every operation is covered, that requests only use spec-declared parameters, and that spec-conformant payloads parse into the models. Drift between the API and this client fails CI — the same guarantee code generation gave, without generated code.

Install

pip install negirau

Usage

from negirau import Negirau

client = Negirau()

found = client.subjects.list(q="library", limit=5)  # free-text name search
for subject in found.subjects:
    print(subject.id, subject.name)

nearby = client.subjects.list_near(35.64, 139.65, radius=3000)

reactions = client.subjects.reactions.retrieve("0e6f9b3a-6b1e-4b8a-9a6a-1c2d3e4f5a6b")
print(reactions.total)  # the all-time display value: exact up to 100, "100+" beyond

Async:

from negirau import AsyncNegirau

async with AsyncNegirau() as client:
    page = await client.subjects.list(q="花火")

Errors and retries:

from negirau import Negirau, NotFoundError, RateLimitError

client = Negirau(max_retries=2)  # 408/409/429/5xx retry with exponential backoff

try:
    client.subjects.retrieve("no-such-subject")
except NotFoundError as error:
    print(error.status_code, error.code)  # 404 not_found
except RateLimitError:
    ...

Types live in negirau.types (Subject, SubjectPage, ReactionsSummary, DisplayValue, …).

Notes

  • Counts are display values by design: exact up to 100, "100+" beyond, and never rankings — no API returns unbounded exact numbers.
  • There are no bulk dumps: resolve names with client.subjects.list(q=...) (server-side trigram search, Japanese and English substrings).

License

Apache-2.0. This package lives in the negirau monorepo, whose server code is separately licensed under AGPL-3.0-only.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

negirau-0.3.0.tar.gz (11.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

negirau-0.3.0-py3-none-any.whl (14.5 kB view details)

Uploaded Python 3

File details

Details for the file negirau-0.3.0.tar.gz.

File metadata

  • Download URL: negirau-0.3.0.tar.gz
  • Upload date:
  • Size: 11.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for negirau-0.3.0.tar.gz
Algorithm Hash digest
SHA256 81e8ccf072dc1a3039371e99b0b957e9a5466f23110ec8dce5c9380373a2481c
MD5 55aa33fd57627b46cb9d73b7e7bc84c1
BLAKE2b-256 003267513ebbd55731a0313e1263d5d193905c9261c587e70d6b321d245f385d

See more details on using hashes here.

File details

Details for the file negirau-0.3.0-py3-none-any.whl.

File metadata

  • Download URL: negirau-0.3.0-py3-none-any.whl
  • Upload date:
  • Size: 14.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for negirau-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 aec2b1682e15856c0f253d30211017948d236d39b8e143fec79ee997f1bdb5bd
MD5 9f8e687009f63a6c926e9bb213416ab5
BLAKE2b-256 6856e707cd2c0963349a55de751ce706b9e30f6f7dd706adc692c4d8293d8edf

See more details on using hashes here.

Release history Release notifications | RSS feed

0.3.2

2 files

0.3.1

2 files

This release

0.3.0 This release

2 files

0.2.0

2 files

0.1.1

2 files

0.1.0

2 files

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