tribulnation-catalogue
Python client for the Tribulnation Catalogue — a typed, open catalogue of crypto assets, trading platforms, and instrument mappings.
Install
pip install tribulnation-catalogue
Usage
from tribulnation.catalogue import Catalogue
catalogue = Catalogue.load()
btc = catalogue.assets["bitcoin"]
binance = catalogue.platforms["binance"]
load() keeps the published data.zip in ~/.cache/tribulnation and loads it from there. Once a day (max_age) it asks the site whether the archive changed with one conditional request (ETag / Last-Modified), and downloads it again only when it did. A download replaces the cached copy only once it loads; if the site is unreachable, the last good copy is used and a warning is logged. Only a first run without any cached copy fails.
Loading options
# Cached archive, checked at most once a day (default)
catalogue = Catalogue.load()
# Check more or less often
catalogue = Catalogue.load(max_age=timedelta(hours=6))
# Force a fresh download
catalogue = Catalogue.load(refresh=True)
# Load from an explicit local folder (never touches the network once it exists)
catalogue = Catalogue.load("data")
# Custom source URL or cache directory
catalogue = Catalogue.load(
url="https://my-mirror.example.com/data.zip",
cache_dir=".cache/catalogue",
)
# Suppress the download message
catalogue = Catalogue.load(silent=True)
Long-running processes
catalogue = Catalogue.load()
catalogue.digest # sha256 of the loaded data.zip (None for a folder)
catalogue.loaded_at # when it was loaded
# Call as often as you like (e.g. daily): returns the same object until max_age
# elapsed and the published archive actually changed, then a freshly loaded one.
catalogue = catalogue.maybe_refresh()
# Check now, regardless of max_age
catalogue = catalogue.refresh()
Network errors never raise from maybe_refresh() / refresh(); the last good copy stays.
Lookups
catalogue.asset_for('hyperliquid', 150) # 'hyperliquid' (spot token index)
catalogue.asset_for('arbitrum', '0xaf88d065e77c8cc2239327c5edb3a432268e5831') # 'usd-coin' (any casing)
catalogue.asset_for('ethereum', 'native') # 'ethereum'
catalogue.asset_for('bitget', 'rSPY') # symbols are case-sensitive
catalogue.asset_for('mexc', 'UNKNOWN') # None
catalogue.perpetual_for('hyperliquid', 'kPEPE')
# PerpetualInstrument(platform='hyperliquid', id='kPEPE', base='pepe', quote='tether',
# settlement='usd-coin', multiplier=Decimal('1000'), delisted=False)
catalogue.debt_for('ethereum', '0x72e95b8931767c79ba4eee721354d6e99a61d004')
# DebtInstrument(platform='ethereum', id='0x72E95b89…', asset='usd-coin', name='Aave USDC Debt')
catalogue.network_for('bybit', 'BSC (BEP20)') # 'bnb-chain'
catalogue.canonical_id('old-id') # follows `replaced_by` aliases
Every lookup follows replaced_by: asset ids are never deleted, and a merged asset keeps its file as an alias of the surviving one.
What's available
catalogue.assets # dict[str, Asset]
catalogue.platforms # dict[str, Platform]
catalogue.blockchains # filtered view: kind == 'blockchain'
catalogue.cexs # filtered view: kind == 'cex'
catalogue.dexs # filtered view: kind == 'dex'
catalogue.spot_instruments # dict[platform, dict[id, Spot]]
catalogue.perpetual_instruments # dict[platform, dict[id, Perpetual]]
catalogue.debt_instruments # dict[platform, dict[id, Debt]]
catalogue.pools # dict[platform, dict[id, Pool]]
catalogue.asset_translations # dict[platform, dict[exchange_id, asset_id]]
catalogue.network_translations # dict[platform, dict[exchange_id, network_id]]
catalogue.spam # dict[platform, dict[address, SpamAddress]]
Types
All types are available from the package root:
from tribulnation.catalogue import (
Asset, AssetPeg, ExternalIds,
Platform, Blockchain, CexPlatform, DexPlatform,
Spot, Perpetual, PerpetualInstrument, DebtInstrument, Debt, Pool,
SpamAddress,
)
Links
Release files for tribulnation-catalogue 0.3.4
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| tribulnation_catalogue-0.3.4.tar.gz | 39.9 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| tribulnation_catalogue-0.3.4-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 84.8 kB
Release files / tribulnation_catalogue-0.3.4.tar.gz
| Download URL | tribulnation_catalogue-0.3.4.tar.gz |
|---|---|
| Size | 39.9 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
97d4cc601b95c81a3e17d5db4c4a4c658f2a8dd9a74308a728567ad5131b7c96
|
|
BLAKE2b-256 checksum How to use checksums |
00191dd46e335bd860dd939af491452efac1df05e2b359570fcc388ef518aab5
|
| 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 24, 2026.
Transparency logRelease files / tribulnation_catalogue-0.3.4-py3-none-any.whl
| Download URL | tribulnation_catalogue-0.3.4-py3-none-any.whl |
|---|---|
| Size | 44.9 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
24ac1e329bcc36c06f7a13f74a63ef33c0348a1cb96d219d2d2c59ee7f2fb250
|
|
BLAKE2b-256 checksum How to use checksums |
5f157732d4a79118b104e0499df83dd3b4dfccc85441b15c5b6962f89e8187b6
|
| 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 24, 2026.
Transparency log