Skip to main content

Python SDK for Tepilora API v3

Project description

Tepilora SDK (Python)

SDK Python (sync + async) per Tepilora API v3.

218 operazioni in 23 namespace auto-generati dal registry.

Install

pip install Tepilora

Optional extras:

pip install 'Tepilora[arrow]'   # PyArrow per formati binari
pip install 'Tepilora[polars]'  # Polars DataFrame support

Quick Start

import Tepilora as T

client = T.TepiloraClient(api_key="YOUR_KEY")

# Typed endpoints (IDE autocomplete)
securities = client.securities.search(query="MSCI ETF", limit=10)
print(securities["totalCount"])

# Raw call
resp = client.call("securities.search", params={"query": "MSCI", "limit": 5})
print(resp.data)

Async

import asyncio
import Tepilora as T

async def main():
    async with T.AsyncTepiloraClient(api_key="YOUR_KEY") as client:
        data = await client.securities.search(query="MSCI", limit=10)
        print(data)

asyncio.run(main())

Namespaces

Namespace Operazioni Descrizione
securities 12 Search, filter, history, facets, MiFID, fees
news 7 Search, latest, trending, details
publications 5 Research reports and publications
portfolio 19 CRUD, returns, attribution, optimization
analytics 68 Rolling metrics, ratios, risk, factors
alerts 9 Alert rules CRUD, evaluate, history
macro 6 Economic indicators, calendar
stocks 9 Technicals, screening, peers, signals
bonds 7 Analyze, screen, ladder, curve, spread
options 6 Pricing, Greeks, IV, strategies
esg 5 ESG scores, screening, comparison
factors 3 Fama-French, momentum, factor loading
fh 7 Fundamentals history, financials
clients 8 B2B client management
profiling 10 MiFID questionnaires, suitability
billing 10 Fee calculations, schedules, records
documents 4 Document parsing, classification
alternatives 9 Alternative investments
queries 8 Saved queries CRUD, execute
search 1 Global search
data 1 Raw data access
exports 2 Data export to file formats

Esempi per Namespace

Securities

# Search
results = client.securities.search(query="MSCI World", limit=20)

# Get details
details = client.securities.description(identifier="IE00B4L5Y983EURXMIL")

# Price history
history = client.securities.history(
    identifiers=["IE00B4L5Y983EURXMIL", "FR0010655712EURXPAR"],
    start_date="2024-01-01",
    limit=1000
)

# Filter by criteria
filtered = client.securities.filter(filters={"Currency": "EUR", "TepiloraType": "ETF"})

# Get facets for building filters
facets = client.securities.facets(fields=["Currency", "TepiloraType", "Country"])

Portfolio

# Create portfolio
portfolio = client.portfolio.create(
    name="My Portfolio",
    input_type="fixed_weights",
    input_data={"IE00B4L5Y983EURXMIL": 0.6, "FR0010655712EURXPAR": 0.4}
)

# Get returns
returns = client.portfolio.returns(
    id=portfolio["id"],
    start_date="2024-01-01",
    return_method="twr"
)

# Performance attribution
attribution = client.portfolio.attribution(id=portfolio["id"])

# Optimize
optimized = client.portfolio.optimize(
    id=portfolio["id"],
    objective="max_sharpe",
    constraints={"max_weight": 0.3}
)

Analytics

# List available functions
functions = client.analytics.list()

# Get function help
help_info = client.analytics.help("rolling_volatility")

# Calculate rolling volatility
vol = client.analytics.rolling_volatility(
    identifiers="IE00B4L5Y983EURXMIL",
    period=252,
    start_date="2023-01-01"
)

# Rolling Sharpe ratio
sharpe = client.analytics.rolling_sharpe(
    identifiers="IE00B4L5Y983EURXMIL",
    period=252,
    rf=0.02
)

# Factor regression
factors = client.analytics.factor_regression(
    identifiers="IE00B4L5Y983EURXMIL",
    model="FF5"
)

News & Publications

# Search news
news = client.news.search(query="bitcoin", limit=20)

# Latest news
latest = client.news.latest(limit=10)

# Trending topics
trending = client.news.trending(limit=50, finance_only=True)

# Search publications
pubs = client.publications.search(query="market outlook", limit=10)

Alerts

# Create alert
alert = client.alerts.create(
    name="Price Alert",
    condition={"type": "price_change", "threshold": 5.0},
    action={"type": "webhook", "url": "https://..."}
)

# List alerts
alerts = client.alerts.list(enabled=True)

# Evaluate manually
result = client.alerts.evaluate(rule_id=alert["id"])

Bonds

# Analyze bond
analysis = client.bonds.analyze(
    identifier="XS1234567890",
    price=98.5,
    settlement_date="2024-02-01"
)

# Screen bonds
bonds = client.bonds.screen(
    criteria={"min_yield": 4.0, "max_duration": 5.0},
    limit=50
)

# Get yield curve
curve = client.bonds.curve(currency="EUR", date="2024-01-15")

Arrow/Binary Formats

from Tepilora.arrow import read_ipc_stream

# Request Arrow format
resp = client.call_arrow_ipc_stream("securities.search", params={"query": "ETF", "limit": 1000})
table = read_ipc_stream(resp.content)
print(table.to_pandas())

Module-Level API

import Tepilora as T

# Configure globally
T.configure(api_key="YOUR_KEY")

# Use without client instance
T.analytics.rolling_volatility(identifiers="IE00B4L5Y983EURXMIL")

Or via environment variables:

export TEPILORA_API_KEY=your_key
export TEPILORA_BASE_URL=https://tepiloradata.com

Error Handling

from Tepilora.errors import TepiloraAPIError

try:
    data = client.securities.search(query="invalid")
except TepiloraAPIError as e:
    print(f"Error: {e.message}")
    print(f"Code: {e.code}")

API Endpoints

  • POST /T-Api/v3 - Unified action router (all operations)
  • GET /T-Api/v3/health - Health check
  • GET /T-Api/v3/pricing - Pricing info
  • GET /T-Api/v3/logs/status - Logs status

Version

import Tepilora
print(Tepilora.__version__)  # 0.3.0

Project details


Download files

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

Source Distribution

tepilora-0.3.1.tar.gz (74.1 kB view details)

Uploaded Source

Built Distribution

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

tepilora-0.3.1-py3-none-any.whl (86.9 kB view details)

Uploaded Python 3

File details

Details for the file tepilora-0.3.1.tar.gz.

File metadata

  • Download URL: tepilora-0.3.1.tar.gz
  • Upload date:
  • Size: 74.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for tepilora-0.3.1.tar.gz
Algorithm Hash digest
SHA256 022e0a0cc75920612712f12ff204f3ae9143247be4b8481c4178e658b2a0ed9e
MD5 7b19f0a9b96d3b112112881644f88e79
BLAKE2b-256 3ff284aa89b7fdd8cd9d3fcffbe18382901f7e373fc7e679e74e1bb521b6267d

See more details on using hashes here.

Provenance

The following attestation bundles were made for tepilora-0.3.1.tar.gz:

Publisher: publish.yml on Admintepilora/tepilora-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tepilora-0.3.1-py3-none-any.whl.

File metadata

  • Download URL: tepilora-0.3.1-py3-none-any.whl
  • Upload date:
  • Size: 86.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for tepilora-0.3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 0934f762fff20a88981419c8f6496f2584c82a41aa915218569cd35138e4579d
MD5 748d781d4521acd6b1b7dc76efafbc4f
BLAKE2b-256 e69520cdb423f6d422ee30fa8856279cc1acca07dfb2529c7844cf2ced1e5b98

See more details on using hashes here.

Provenance

The following attestation bundles were made for tepilora-0.3.1-py3-none-any.whl:

Publisher: publish.yml on Admintepilora/tepilora-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page