Auspicium DaaS SDK — market data for crypto and prediction market quants
Project description
auspicium
Python SDK for the Auspicium market data platform — crypto OHLCV, order books, trades, Polymarket prediction markets, and cross-market signals.
Install
pip install auspicium
Quick start
import os
os.environ["AUSP_API_KEY"] = "your-api-key"
os.environ["AUSP_GATEWAY_URL"] = "https://api.auspicium.io"
from auspicium import rest
# OHLCV candlestick data
df = rest.ohlcv("binance", "BTC-USDT", interval="5m", days=7)
# Order book snapshot
book = rest.orderbook("binance", "BTC-USDT", depth=20)
# Polymarket prediction markets
markets = rest.markets(status="active", base_asset="BTC")
# Cross-market signal (Binance x Polymarket)
cross = rest.cross_market(granularity="5m", base_asset="BTC", hours=48)
WebSocket streaming
from auspicium import stream
async with stream.connect() as ws:
await ws.subscribe("ohlcv", source="binance", symbol="BTC-USDT")
async for msg in ws:
print(msg.channel, msg.payload)
Get your API key
Sign up at auspicium.io — free tier included.
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
auspicium-0.4.2.tar.gz
(60.0 kB
view details)
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
auspicium-0.4.2-py3-none-any.whl
(69.1 kB
view details)
File details
Details for the file auspicium-0.4.2.tar.gz.
File metadata
- Download URL: auspicium-0.4.2.tar.gz
- Upload date:
- Size: 60.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
72af0c2783de578bf05d2c934ec97de90ef6bf3bb16743a778674160d578515e
|
|
| MD5 |
76e2742099cda772fb3dd4ec1d95adaa
|
|
| BLAKE2b-256 |
7e6198c8ba185f8221770c51becf37f57857e977b327f9aba60811746abd0892
|
File details
Details for the file auspicium-0.4.2-py3-none-any.whl.
File metadata
- Download URL: auspicium-0.4.2-py3-none-any.whl
- Upload date:
- Size: 69.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b0444d6b58119e184b306114af3990a6c1a2fd5bd38dc69f98e4518e85ede5c6
|
|
| MD5 |
011a799d2b1827f27ba5eab02866b965
|
|
| BLAKE2b-256 |
3f84b67b2fb142faddff8107465c1c9d959a57ec90ca427b34436010fadd5af0
|