Skip to main content

A collection of broad market analysis functions and api wrappers

Project description

lukhed_markets

Python API wrappers and utilities for prediction markets and economic data. Includes wrappers for Kalshi, Polymarket, and FRED (Federal Reserve Economic Data).

Installation

pip install lukhed-markets

Features

  • Kalshi API: Wrapper for Kalshi prediction markets with custom discovery methods
  • Polymarket API: Wrapper for Polymarket Gamma and Data APIs with pagination support
  • FRED API: Wrapper for Federal Reserve Economic Data with built-in analysis and plotting capabilities
  • Automatic pagination: Handles paginated responses seamlessly
  • Rate limiting: Built-in rate limiting based on API plan tiers
  • Secure authentication: Integrated key management with local or GitHub storage options

Kalshi API

A Python wrapper for the Kalshi Elections API providing access to prediction market data and trading functionality.

Quick Start

from lukhed_markets.kalshi import Kalshi

# First time setup (guided authentication)
client = Kalshi(api_delay='basic', key_management='github')

# Subsequent usage
client = Kalshi()

Authentication Setup

  1. Create a Kalshi account at https://kalshi.com
  2. Generate API keys from your account profile
  3. Download your private key file
  4. Run the initialization - the guided setup will prompt you for credentials

Rate Limiting

The wrapper includes built-in rate limiting based on your API plan:

  • Basic: 10 read/sec, 5 write/sec
  • Advanced: 30 read/sec, 30 write/sec
  • Premier: 100 read/sec, 100 write/sec
  • Prime: 100 read/sec, 400 write/sec

Core API Methods

Markets

  • get_markets(limit, cursor, event_ticker, series_ticker, ...) - Get market data with filtering
  • get_market(ticker) - Get specific market details
  • get_market_candlesticks(series_ticker, ticker, start_ts, end_ts, period_interval) - Historical price data
  • get_market_orderbook(ticker, depth) - Current orderbook
  • get_market_spread(ticker, depth) - Calculate bid-ask spread

Events & Series

  • get_events(limit, cursor, status, series_ticker, ...) - Get event data
  • get_event(event_ticker, with_nested_markets) - Get specific event
  • get_series(series_ticker) - Get series information
  • get_all_available_events(status, series_ticker, ...) - Auto-paginated event retrieval

Exchange Information

  • get_exchange_status() - Current exchange status
  • get_exchange_schedule() - Exchange schedule
  • get_exchange_announcements() - Exchange-wide announcements
  • get_milestones(limit, cursor, ...) - Milestone data

Search & Discovery

  • get_tags_for_series_categories() - Series category tags mapping
  • get_filters_by_sport() - Sports filtering options

Account (Authentication Required)

  • get_account_balance() - Get account balance

Custom Discovery Methods

Convenience methods for common market queries:

# Get all S&P 500 year-end range markets
sp500_markets = client.get_sp500_year_end_range_markets(active_only=True)

# Get NASDAQ year-end range markets
nasdaq_markets = client.get_nasdaq_year_end_range_markets(force_year=2026)

# Get Bitcoin yearly high markets
btc_markets = client.get_bitcoin_yearly_high_markets(active_only=True)

# Get markets by category
economics_series = client.get_economics_series()
inflation_series = client.get_inflation_series()
fed_series = client.get_fed_series()

Example Usage

from lukhed_markets.kalshi import Kalshi

# Initialize client
client = Kalshi()

# Get active markets
markets = client.get_markets(limit=100, status='open')

# Get specific market with orderbook
market = client.get_market("INXD-26DEC31-T5000")
orderbook = client.get_market_orderbook("INXD-26DEC31-T5000", depth=5)

# Get historical candlestick data
candles = client.get_market_candlesticks(
    series_ticker="INXD",
    ticker="INXD-26DEC31-T5000",
    start_ts="20260101000000",
    end_ts="20260115000000",
    period_interval="1h"
)

# Get all events with pagination handled automatically
all_events = client.get_all_available_events(status='open')

Polymarket API

A Python wrapper for Polymarket's Gamma API (markets, events, tags) and Data API (leaderboards, comments), with support for the CLOB API via py-clob-client.

Quick Start

from lukhed_markets.polymarket import Polymarket

# Initialize (no authentication required for public endpoints)
pm = Polymarket(api_delay=0.1)

# Access CLOB API directly if needed
pm.clob_api  # Instance of py_clob_client.client.ClobClient

API Status

# Check API status
gamma_status = pm.get_gamma_status()  # Gamma API status
data_status = pm.get_data_status()    # Data API status

Markets

# Get all active markets with pagination
markets = pm.get_markets(get_all_data=True, include_closed=False, active_only=True)

# Get markets by tag
politics_markets = pm.get_markets(tag_filter='politics', get_all_data=False)

# Available tag filters: 'politics', 'crypto', 'sports', 'science', 'culture', etc.

Events

# Get all events with pagination
events = pm.get_events(get_all_data=True, include_closed=False, active_only=True)

# Get events by tag with sorting
crypto_events = pm.get_events(
    tag='crypto', 
    order_by='volume', 
    ascending=False,
    get_all_data=True
)

# Get specific event by ID or slug
event = pm.get_event_by_id('event-id-123')
event = pm.get_event_by_slug('fed-decision-in-january')

Tags

# Get all tags
tags = pm.get_tags(get_all_data=True)

# Get specific tag details
tag = pm.get_tag_by_id('politics')

# Get related tags
related = pm.get_related_tags('politics')

User Data

# Get comments for a market/event/series
comments = pm.list_comments(
    entity_type='market',
    entity_id='market-id-123',
    get_positions=True,
    holders_only=False
)

# Get leaderboard data
leaderboard = pm.get_leaderboards(
    category='POLITICS',      # OVERALL, POLITICS, SPORTS, CRYPTO, etc.
    time_period='MONTH',      # ALL, DAY, WEEK, MONTH
    rank_by='profit',         # profit or volume
    get_all_data=True
)

# Check specific user on leaderboard
user_data = pm.get_leaderboards(
    single_user_check='0x1234...',
    user_identifier='address'  # or 'username'
)

Example Usage

from lukhed_markets.polymarket import Polymarket

# Initialize
pm = Polymarket()

# Get all active politics markets
politics_markets = pm.get_markets(
    tag_filter='politics',
    active_only=True,
    include_closed=False,
    get_all_data=True
)

# Get event details with comments
event = pm.get_event_by_slug('presidential-election-2024')
comments = pm.list_comments('event', event['id'], get_all_data=True)

# Get top traders
top_traders = pm.get_leaderboards(
    category='OVERALL',
    time_period='ALL',
    rank_by='profit',
    get_all_data=True
)

FRED API

A Python wrapper for the Federal Reserve Economic Data (FRED) API with built-in data analysis and visualization capabilities. Built on top of fredapi.

Quick Start

from lukhed_markets.fred import FRED

# First time setup (guided authentication)
fred = FRED(key_management='github')

# Or provide key directly
fred = FRED(provide_key='your-fred-api-key')

Authentication Setup

  1. Sign up for a free FRED account at https://fred.stlouisfed.org/docs/api/fred/
  2. Get your API key from https://fredaccount.stlouisfed.org/apikeys
  3. Run initialization - the guided setup will prompt for your key

Available Data Series

Inflation & Prices

# Get PCE inflation data with YoY rates calculated
pce_data = fred.get_pce_inflation_rate(
    start_date='2020-01-01',
    end_date='2025-12-31',
    date_format='%Y-%m-%d'
)
# Returns DataFrame with columns: ['PCEPI', 'yoy_inflation']

Employment

# Get manufacturing employment data
employment = fred.get_manufacturing_employees(
    start_date='2020-01-01',
    end_date='2025-12-31'
)

Government Finance

# Get federal government interest payments to rest of world
interest_payments = fred.federal_governemnt_interest_payments_to_row(
    start_date='2020-01-01',
    end_date='2025-12-31'
)

Plotting & Visualization

# Plot PCE inflation with Fed target and averages
fred.plot_pce_inflation_rate(
    start_date='2015-01-01',
    end_date='2025-12-31',
    include_averages=True,  # Show Fed 2% target and actual average
    show_plot=True,
    save_plots=True  # Saves to 'plots/' directory
)

Direct FRED API Access

# Access underlying fredapi instance for any FRED series
fred.api.get_series('GDP')  # Get any FRED series by ID
fred.api.get_series_info('UNRATE')  # Get series metadata

Example Usage

from lukhed_markets.fred import FRED
import pandas as pd

# Initialize
fred = FRED()

# Get PCE inflation data
inflation = fred.get_pce_inflation_rate(
    start_date='2020-01-01',
    end_date='2025-12-31'
)

# Analyze inflation trends
recent_avg = inflation['yoy_inflation'].tail(12).mean()
print(f"Average inflation (last 12 months): {recent_avg:.2f}%")

# Create visualization
fred.plot_pce_inflation_rate(
    start_date='2015-01-01',
    include_averages=True,
    save_plots=True
)

# Get manufacturing employment trends
employment = fred.get_manufacturing_employees(start_date='2020-01-01')
print(f"Current manufacturing employment: {employment.iloc[-1].values[0]:,.0f}")

Documentation & Resources

API Documentation

Dependencies

  • lukhed-basic-utils>=1.6.9 - Core utilities for authentication and requests
  • fredapi>=0.5.2 - FRED API client
  • py_clob_client>=0.34.1 - Polymarket CLOB client
  • Python 3.10+

License

MIT License - see LICENSE file for details.

Author

lukhed
Email: lukhed.mail@gmail.com
GitHub: https://github.com/lukhed/lukhed_markets

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

lukhed_markets-0.2.0.tar.gz (22.1 kB view details)

Uploaded Source

Built Distribution

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

lukhed_markets-0.2.0-py3-none-any.whl (21.1 kB view details)

Uploaded Python 3

File details

Details for the file lukhed_markets-0.2.0.tar.gz.

File metadata

  • Download URL: lukhed_markets-0.2.0.tar.gz
  • Upload date:
  • Size: 22.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.11.9

File hashes

Hashes for lukhed_markets-0.2.0.tar.gz
Algorithm Hash digest
SHA256 ba5183ff207e92a98e79add9d110e4f3f801f0e27906d19a18619b86ba134d50
MD5 6e9afa6d10efa9cf2ca4ad77ac955af0
BLAKE2b-256 486075cd9279d82dcdbf39cdfa2c5510b37689a3aca2fdaa6fc6821852c851a0

See more details on using hashes here.

File details

Details for the file lukhed_markets-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: lukhed_markets-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 21.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.11.9

File hashes

Hashes for lukhed_markets-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 7d23b7f7871276d984b4d5435e4bc193e2536b65fa348647a813badc031afc12
MD5 51b88a4a7d2d0ac3c0b5e0b1714d17ff
BLAKE2b-256 d3125b4f9211a273291ea6cb6475ef3827b7a581fd29ae02e2bd96e975a2fdab

See more details on using hashes here.

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