Official Python SDK for Talyxion (talyxion.com) — signals, screener, datafields, rates terminal, simulations, and realtime streaming.
Project description
Talyxion Python SDK
Official sync Python client for the Talyxion REST API and realtime streams.
pip install talyxion
Quick start
from talyxion import Talyxion
client = Talyxion(api_key="tk_...") # or set TALYXION_API_KEY
# Daily trading signals
page = client.signals.list(date="2026-04-27", asset_class="crypto", min_conviction=0.7)
for sig in page.items:
print(sig.ticker, sig.side, sig.conviction)
# Ticker snapshot
info = client.ticker("VIC").info()
print(info.latest_signal.entry_price, info.stats.win_rate)
# Rates terminal
snapshot = client.rates.snapshot()
ten_year = client.rates.series("DGS10")
# Run an alpha simulation and stream progress
for event in client.stream.sim_progress(task_id):
print(event.progress, event.message)
if event.status in ("done", "error"):
break
Authentication
Pass your API key via constructor or the TALYXION_API_KEY env var. Keys are
issued from the Talyxion dashboard and require an api or institutional
subscription tier.
Resources (v0.1)
| Namespace | Methods |
|---|---|
client.status() |
API health + key info |
client.signals |
list, history |
client.screener |
run |
client.datafields |
list, get(key) |
client.ticker(t) |
info |
client.rates |
snapshot, series, suggest, yahoo |
client.simulations |
get(task_id), wait(task_id) |
client.stream |
sim_progress(task_id), feed_events() |
Errors
All exceptions inherit from TalyxionError. Common subclasses:
TalyxionAuthError— missing/invalid/expired key (401)TalyxionTierError— subscription tier insufficient (402)TalyxionPermissionError— scope or IP denied (403)TalyxionNotFoundError— resource missing (404)TalyxionRateLimitError— IP or daily quota exceeded (429); has.retry_afterTalyxionServerError— backend 5xx
Optional pandas helpers
pip install talyxion[pandas]
df = client.signals.list(date="2026-04-27").to_dataframe()
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 talyxion-0.4.2.tar.gz.
File metadata
- Download URL: talyxion-0.4.2.tar.gz
- Upload date:
- Size: 95.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ae47811bd21cd303d487f43ad6027f693152a77a6fcdaf3e6e6327191e731917
|
|
| MD5 |
72643e3db102118b81dfd649a5de2c5e
|
|
| BLAKE2b-256 |
5e852317a52dd2c4e53eb68c3520b53a5ec30dcdf99d43038c0428439596b078
|
File details
Details for the file talyxion-0.4.2-py3-none-any.whl.
File metadata
- Download URL: talyxion-0.4.2-py3-none-any.whl
- Upload date:
- Size: 115.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2f4bfbe3f5675ad33a887639ef2c156e5a2a0124b52f17c0a84641a086b8874e
|
|
| MD5 |
7ec60e10b099ba88d73800b2dbc49213
|
|
| BLAKE2b-256 |
b5822bb003ce7082e7a54572828d52be6f4b11cf860bb87ae99935c49c012ad3
|