kalshi-pmx 0.1.0

Async Rust client for Kalshi's Trade API and WebSocket streams.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![doc = include_str!("../README.md")]

pub mod auth;
pub mod client;
pub mod config;
pub mod error;
pub mod generated;
pub mod models;
pub mod pagination;
pub mod params;
pub mod rate_limit;
pub mod rest;
pub mod typed;
pub mod ws;

pub use client::{Kalshi, KalshiBuilder};
pub use config::{Environment, KalshiConfig};
pub use error::{Error, Result};