kalshi-python-sync 3.9.0__tar.gz → 3.11.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/PKG-INFO +3 -3
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/README.md +2 -2
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/__init__.py +7 -2
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/api/account_api.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/api/api_keys_api.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/api/communications_api.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/api/events_api.py +6 -6
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/api/exchange_api.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/api/fcm_api.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/api/historical_api.py +5 -5
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/api/incentive_programs_api.py +1 -1
- kalshi_python_sync-3.11.0/kalshi_python_sync/api/live_data_api.py +1126 -0
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/api/market_api.py +271 -6
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/api/milestone_api.py +16 -16
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/api/multivariate_api.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/api/order_groups_api.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/api/orders_api.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/api/portfolio_api.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/api/search_api.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/api/structured_targets_api.py +25 -7
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/api_client.py +2 -2
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/configuration.py +3 -3
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/exceptions.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/__init__.py +6 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/accept_quote_request.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/amend_order_request.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/amend_order_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/announcement.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/api_key.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/apply_subaccount_transfer_request.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/associated_event.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/batch_cancel_orders_individual_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/batch_cancel_orders_request.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/batch_cancel_orders_request_order.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/batch_cancel_orders_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/batch_create_orders_individual_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/batch_create_orders_request.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/batch_create_orders_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/batch_get_market_candlesticks_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/bid_ask_distribution.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/bid_ask_distribution_historical.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/cancel_order_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/create_api_key_request.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/create_api_key_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/create_market_in_multivariate_event_collection_request.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/create_market_in_multivariate_event_collection_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/create_order_group_request.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/create_order_group_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/create_order_request.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/create_order_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/create_quote_request.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/create_quote_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/create_rfq_request.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/create_rfq_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/create_subaccount_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/daily_schedule.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/decrease_order_request.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/decrease_order_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/error_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/event_data.py +3 -8
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/event_position.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/exchange_instance.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/exchange_status.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/fill.py +2 -8
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/forecast_percentiles_point.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/generate_api_key_request.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/generate_api_key_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/get_account_api_limits_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/get_api_keys_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/get_balance_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/get_communications_id_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/get_event_candlesticks_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/get_event_forecast_percentiles_history_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/get_event_metadata_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/get_event_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/get_events_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/get_exchange_announcements_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/get_exchange_schedule_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/get_fills_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/get_filters_by_sports_response.py +1 -1
- kalshi_python_sync-3.11.0/kalshi_python_sync/models/get_game_stats_response.py +91 -0
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/get_historical_cutoff_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/get_incentive_programs_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/get_live_data_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/get_live_datas_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/get_market_candlesticks_historical_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/get_market_candlesticks_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/get_market_orderbook_response.py +1 -1
- kalshi_python_sync-3.11.0/kalshi_python_sync/models/get_market_orderbooks_response.py +95 -0
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/get_market_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/get_markets_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/get_milestone_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/get_milestones_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/get_multivariate_event_collection_lookup_history_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/get_multivariate_event_collection_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/get_multivariate_event_collections_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/get_multivariate_events_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/get_order_group_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/get_order_groups_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/get_order_queue_position_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/get_order_queue_positions_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/get_order_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/get_orders_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/get_portfolio_resting_order_total_value_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/get_positions_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/get_quote_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/get_quotes_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/get_rfq_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/get_rfqs_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/get_series_fee_changes_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/get_series_list_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/get_series_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/get_settlements_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/get_structured_target_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/get_structured_targets_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/get_subaccount_balances_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/get_subaccount_netting_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/get_subaccount_transfers_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/get_tags_for_series_categories_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/get_trades_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/get_user_data_timestamp_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/incentive_program.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/intra_exchange_instance_transfer_request.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/intra_exchange_instance_transfer_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/live_data.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/lookup_point.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/lookup_tickers_for_market_in_multivariate_event_collection_request.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/lookup_tickers_for_market_in_multivariate_event_collection_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/maintenance_window.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/market.py +9 -6
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/market_candlestick.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/market_candlestick_historical.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/market_candlesticks_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/market_metadata.py +1 -1
- kalshi_python_sync-3.11.0/kalshi_python_sync/models/market_orderbook_fp.py +93 -0
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/market_position.py +3 -3
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/milestone.py +3 -3
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/multivariate_event_collection.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/mve_selected_leg.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/order.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/order_group.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/order_queue_position.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/order_status.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/orderbook_count_fp.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/percentile_point.py +1 -1
- kalshi_python_sync-3.11.0/kalshi_python_sync/models/play_by_play.py +95 -0
- kalshi_python_sync-3.11.0/kalshi_python_sync/models/play_by_play_periods_inner.py +87 -0
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/price_distribution.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/price_distribution_historical.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/price_range.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/quote.py +7 -3
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/rfq.py +2 -2
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/schedule.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/scope_list.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/self_trade_prevention_type.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/series.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/series_fee_change.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/settlement.py +2 -6
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/settlement_source.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/sport_filter_details.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/structured_target.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/subaccount_balance.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/subaccount_netting_config.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/subaccount_transfer.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/ticker_pair.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/trade.py +3 -3
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/update_order_group_limit_request.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/update_subaccount_netting_request.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/models/weekly_schedule.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/rest.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync.egg-info/PKG-INFO +3 -3
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync.egg-info/SOURCES.txt +10 -0
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/pyproject.toml +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/setup.py +2 -2
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_accept_quote_request.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_account_api.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_amend_order_request.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_amend_order_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_announcement.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_api_key.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_api_keys_api.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_apply_subaccount_transfer_request.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_associated_event.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_batch_cancel_orders_individual_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_batch_cancel_orders_request.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_batch_cancel_orders_request_order.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_batch_cancel_orders_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_batch_create_orders_individual_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_batch_create_orders_request.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_batch_create_orders_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_batch_get_market_candlesticks_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_bid_ask_distribution.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_bid_ask_distribution_historical.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_cancel_order_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_communications_api.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_create_api_key_request.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_create_api_key_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_create_market_in_multivariate_event_collection_request.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_create_market_in_multivariate_event_collection_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_create_order_group_request.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_create_order_group_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_create_order_request.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_create_order_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_create_quote_request.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_create_quote_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_create_rfq_request.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_create_rfq_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_create_subaccount_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_daily_schedule.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_decrease_order_request.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_decrease_order_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_error_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_event_data.py +1 -2
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_event_position.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_events_api.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_exchange_api.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_exchange_instance.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_exchange_status.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_fcm_api.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_fill.py +1 -6
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_forecast_percentiles_point.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_generate_api_key_request.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_generate_api_key_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_get_account_api_limits_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_get_api_keys_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_get_balance_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_get_communications_id_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_get_event_candlesticks_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_get_event_forecast_percentiles_history_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_get_event_metadata_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_get_event_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_get_events_response.py +3 -3
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_get_exchange_announcements_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_get_exchange_schedule_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_get_fills_response.py +1 -7
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_get_filters_by_sports_response.py +1 -1
- kalshi_python_sync-3.11.0/test/test_get_game_stats_response.py +57 -0
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_get_historical_cutoff_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_get_incentive_programs_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_get_live_data_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_get_live_datas_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_get_market_candlesticks_historical_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_get_market_candlesticks_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_get_market_orderbook_response.py +1 -1
- kalshi_python_sync-3.11.0/test/test_get_market_orderbooks_response.py +72 -0
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_get_market_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_get_markets_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_get_milestone_response.py +5 -5
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_get_milestones_response.py +5 -5
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_get_multivariate_event_collection_lookup_history_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_get_multivariate_event_collection_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_get_multivariate_event_collections_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_get_multivariate_events_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_get_order_group_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_get_order_groups_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_get_order_queue_position_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_get_order_queue_positions_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_get_order_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_get_orders_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_get_portfolio_resting_order_total_value_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_get_positions_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_get_quote_response.py +7 -3
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_get_quotes_response.py +7 -3
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_get_rfq_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_get_rfqs_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_get_series_fee_changes_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_get_series_list_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_get_series_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_get_settlements_response.py +1 -5
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_get_structured_target_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_get_structured_targets_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_get_subaccount_balances_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_get_subaccount_netting_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_get_subaccount_transfers_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_get_tags_for_series_categories_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_get_trades_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_get_user_data_timestamp_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_historical_api.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_incentive_program.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_incentive_programs_api.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_intra_exchange_instance_transfer_request.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_intra_exchange_instance_transfer_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_live_data.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_live_data_api.py +15 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_lookup_point.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_lookup_tickers_for_market_in_multivariate_event_collection_request.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_lookup_tickers_for_market_in_multivariate_event_collection_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_maintenance_window.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_market.py +1 -6
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_market_api.py +8 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_market_candlestick.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_market_candlestick_historical.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_market_candlesticks_response.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_market_metadata.py +1 -1
- kalshi_python_sync-3.11.0/test/test_market_orderbook_fp.py +66 -0
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_market_position.py +2 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_milestone.py +5 -5
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_milestone_api.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_multivariate_api.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_multivariate_event_collection.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_mve_selected_leg.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_order.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_order_group.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_order_groups_api.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_order_queue_position.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_order_status.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_orderbook_count_fp.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_orders_api.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_percentile_point.py +1 -1
- kalshi_python_sync-3.11.0/test/test_play_by_play.py +56 -0
- kalshi_python_sync-3.11.0/test/test_play_by_play_periods_inner.py +53 -0
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_portfolio_api.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_price_distribution.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_price_distribution_historical.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_price_range.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_quote.py +4 -2
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_rfq.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_schedule.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_scope_list.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_search_api.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_self_trade_prevention_type.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_series.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_series_fee_change.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_settlement.py +1 -5
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_settlement_source.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_sport_filter_details.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_structured_target.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_structured_targets_api.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_subaccount_balance.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_subaccount_netting_config.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_subaccount_transfer.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_ticker_pair.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_trade.py +2 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_update_order_group_limit_request.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_update_subaccount_netting_request.py +1 -1
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/test/test_weekly_schedule.py +1 -1
- kalshi_python_sync-3.9.0/kalshi_python_sync/api/live_data_api.py +0 -564
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/api/__init__.py +0 -0
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/api_response.py +0 -0
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/auth.py +0 -0
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/py.typed +0 -0
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync.egg-info/dependency_links.txt +0 -0
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync.egg-info/requires.txt +0 -0
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync.egg-info/top_level.txt +0 -0
- {kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: kalshi_python_sync
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.11.0
|
|
4
4
|
Summary: Manually defined OpenAPI spec for endpoints being migrated to spec-first approach
|
|
5
5
|
Home-page: https://github.com/Kalshi/exchange-infra
|
|
6
6
|
Author: OpenAPI Generator community
|
|
@@ -28,8 +28,8 @@ Complete API for the Kalshi trading platform including all handlers for SDK gene
|
|
|
28
28
|
|
|
29
29
|
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
30
30
|
|
|
31
|
-
- API version: 3.
|
|
32
|
-
- Package version: 3.
|
|
31
|
+
- API version: 3.11.0
|
|
32
|
+
- Package version: 3.11.0
|
|
33
33
|
- Generator version: 7.17.0
|
|
34
34
|
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
|
35
35
|
For more information, please visit []()
|
|
@@ -3,8 +3,8 @@ Complete API for the Kalshi trading platform including all handlers for SDK gene
|
|
|
3
3
|
|
|
4
4
|
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
5
5
|
|
|
6
|
-
- API version: 3.
|
|
7
|
-
- Package version: 3.
|
|
6
|
+
- API version: 3.11.0
|
|
7
|
+
- Package version: 3.11.0
|
|
8
8
|
- Generator version: 7.17.0
|
|
9
9
|
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
|
10
10
|
For more information, please visit []()
|
|
@@ -7,13 +7,13 @@
|
|
|
7
7
|
|
|
8
8
|
Manually defined OpenAPI spec for endpoints being migrated to spec-first approach
|
|
9
9
|
|
|
10
|
-
The version of the OpenAPI document: 3.
|
|
10
|
+
The version of the OpenAPI document: 3.11.0
|
|
11
11
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
12
12
|
|
|
13
13
|
Do not edit the class manually.
|
|
14
14
|
""" # noqa: E501
|
|
15
15
|
|
|
16
|
-
__version__ = "3.
|
|
16
|
+
__version__ = "3.11.0"
|
|
17
17
|
|
|
18
18
|
# import apis into sdk package
|
|
19
19
|
from kalshi_python_sync.api.account_api import AccountApi
|
|
@@ -117,6 +117,7 @@ from kalshi_python_sync.models.get_exchange_announcements_response import GetExc
|
|
|
117
117
|
from kalshi_python_sync.models.get_exchange_schedule_response import GetExchangeScheduleResponse
|
|
118
118
|
from kalshi_python_sync.models.get_fills_response import GetFillsResponse
|
|
119
119
|
from kalshi_python_sync.models.get_filters_by_sports_response import GetFiltersBySportsResponse
|
|
120
|
+
from kalshi_python_sync.models.get_game_stats_response import GetGameStatsResponse
|
|
120
121
|
from kalshi_python_sync.models.get_historical_cutoff_response import GetHistoricalCutoffResponse
|
|
121
122
|
from kalshi_python_sync.models.get_incentive_programs_response import GetIncentiveProgramsResponse
|
|
122
123
|
from kalshi_python_sync.models.get_live_data_response import GetLiveDataResponse
|
|
@@ -124,6 +125,7 @@ from kalshi_python_sync.models.get_live_datas_response import GetLiveDatasRespon
|
|
|
124
125
|
from kalshi_python_sync.models.get_market_candlesticks_historical_response import GetMarketCandlesticksHistoricalResponse
|
|
125
126
|
from kalshi_python_sync.models.get_market_candlesticks_response import GetMarketCandlesticksResponse
|
|
126
127
|
from kalshi_python_sync.models.get_market_orderbook_response import GetMarketOrderbookResponse
|
|
128
|
+
from kalshi_python_sync.models.get_market_orderbooks_response import GetMarketOrderbooksResponse
|
|
127
129
|
from kalshi_python_sync.models.get_market_response import GetMarketResponse
|
|
128
130
|
from kalshi_python_sync.models.get_markets_response import GetMarketsResponse
|
|
129
131
|
from kalshi_python_sync.models.get_milestone_response import GetMilestoneResponse
|
|
@@ -169,6 +171,7 @@ from kalshi_python_sync.models.market_candlestick import MarketCandlestick
|
|
|
169
171
|
from kalshi_python_sync.models.market_candlestick_historical import MarketCandlestickHistorical
|
|
170
172
|
from kalshi_python_sync.models.market_candlesticks_response import MarketCandlesticksResponse
|
|
171
173
|
from kalshi_python_sync.models.market_metadata import MarketMetadata
|
|
174
|
+
from kalshi_python_sync.models.market_orderbook_fp import MarketOrderbookFp
|
|
172
175
|
from kalshi_python_sync.models.market_position import MarketPosition
|
|
173
176
|
from kalshi_python_sync.models.milestone import Milestone
|
|
174
177
|
from kalshi_python_sync.models.multivariate_event_collection import MultivariateEventCollection
|
|
@@ -179,6 +182,8 @@ from kalshi_python_sync.models.order_queue_position import OrderQueuePosition
|
|
|
179
182
|
from kalshi_python_sync.models.order_status import OrderStatus
|
|
180
183
|
from kalshi_python_sync.models.orderbook_count_fp import OrderbookCountFp
|
|
181
184
|
from kalshi_python_sync.models.percentile_point import PercentilePoint
|
|
185
|
+
from kalshi_python_sync.models.play_by_play import PlayByPlay
|
|
186
|
+
from kalshi_python_sync.models.play_by_play_periods_inner import PlayByPlayPeriodsInner
|
|
182
187
|
from kalshi_python_sync.models.price_distribution import PriceDistribution
|
|
183
188
|
from kalshi_python_sync.models.price_distribution_historical import PriceDistributionHistorical
|
|
184
189
|
from kalshi_python_sync.models.price_range import PriceRange
|
{kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/api/account_api.py
RENAMED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Manually defined OpenAPI spec for endpoints being migrated to spec-first approach
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 3.
|
|
8
|
+
The version of the OpenAPI document: 3.11.0
|
|
9
9
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
10
|
|
|
11
11
|
Do not edit the class manually.
|
{kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/api/api_keys_api.py
RENAMED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Manually defined OpenAPI spec for endpoints being migrated to spec-first approach
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 3.
|
|
8
|
+
The version of the OpenAPI document: 3.11.0
|
|
9
9
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
10
|
|
|
11
11
|
Do not edit the class manually.
|
{kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/api/communications_api.py
RENAMED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Manually defined OpenAPI spec for endpoints being migrated to spec-first approach
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 3.
|
|
8
|
+
The version of the OpenAPI document: 3.11.0
|
|
9
9
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
10
|
|
|
11
11
|
Do not edit the class manually.
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Manually defined OpenAPI spec for endpoints being migrated to spec-first approach
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 3.
|
|
8
|
+
The version of the OpenAPI document: 3.11.0
|
|
9
9
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
10
|
|
|
11
11
|
Do not edit the class manually.
|
|
@@ -951,7 +951,7 @@ class EventsApi:
|
|
|
951
951
|
:type with_nested_markets: bool
|
|
952
952
|
:param with_milestones: If true, includes related milestones as a field alongside events.
|
|
953
953
|
:type with_milestones: bool
|
|
954
|
-
:param status: Filter by event status. Possible values are 'open', 'closed', 'settled'. Leave empty to return events with any status.
|
|
954
|
+
:param status: Filter by event status. Possible values are 'unopened', 'open', 'closed', 'settled'. Leave empty to return events with any status.
|
|
955
955
|
:type status: str
|
|
956
956
|
:param series_ticker: Filter by series ticker
|
|
957
957
|
:type series_ticker: str
|
|
@@ -1021,7 +1021,7 @@ class EventsApi:
|
|
|
1021
1021
|
cursor: Annotated[Optional[StrictStr], Field(description="Parameter to specify the pagination cursor. Use the cursor value returned from the previous response to get the next page of results. Leave empty for the first page.")] = None,
|
|
1022
1022
|
with_nested_markets: Annotated[Optional[StrictBool], Field(description="Parameter to specify if nested markets should be included in the response. When true, each event will include a 'markets' field containing a list of Market objects associated with that event. Historical markets settled before the historical cutoff will not be included.")] = None,
|
|
1023
1023
|
with_milestones: Annotated[Optional[StrictBool], Field(description="If true, includes related milestones as a field alongside events.")] = None,
|
|
1024
|
-
status: Annotated[Optional[StrictStr], Field(description="Filter by event status. Possible values are 'open', 'closed', 'settled'. Leave empty to return events with any status.")] = None,
|
|
1024
|
+
status: Annotated[Optional[StrictStr], Field(description="Filter by event status. Possible values are 'unopened', 'open', 'closed', 'settled'. Leave empty to return events with any status.")] = None,
|
|
1025
1025
|
series_ticker: Annotated[Optional[StrictStr], Field(description="Filter by series ticker")] = None,
|
|
1026
1026
|
min_close_ts: Annotated[Optional[StrictInt], Field(description="Filter events with at least one market with close timestamp greater than this Unix timestamp (in seconds).")] = None,
|
|
1027
1027
|
min_updated_ts: Annotated[Optional[StrictInt], Field(description="Filter events with metadata updated after this Unix timestamp (in seconds). Use this to efficiently poll for changes.")] = None,
|
|
@@ -1050,7 +1050,7 @@ class EventsApi:
|
|
|
1050
1050
|
:type with_nested_markets: bool
|
|
1051
1051
|
:param with_milestones: If true, includes related milestones as a field alongside events.
|
|
1052
1052
|
:type with_milestones: bool
|
|
1053
|
-
:param status: Filter by event status. Possible values are 'open', 'closed', 'settled'. Leave empty to return events with any status.
|
|
1053
|
+
:param status: Filter by event status. Possible values are 'unopened', 'open', 'closed', 'settled'. Leave empty to return events with any status.
|
|
1054
1054
|
:type status: str
|
|
1055
1055
|
:param series_ticker: Filter by series ticker
|
|
1056
1056
|
:type series_ticker: str
|
|
@@ -1119,7 +1119,7 @@ class EventsApi:
|
|
|
1119
1119
|
cursor: Annotated[Optional[StrictStr], Field(description="Parameter to specify the pagination cursor. Use the cursor value returned from the previous response to get the next page of results. Leave empty for the first page.")] = None,
|
|
1120
1120
|
with_nested_markets: Annotated[Optional[StrictBool], Field(description="Parameter to specify if nested markets should be included in the response. When true, each event will include a 'markets' field containing a list of Market objects associated with that event. Historical markets settled before the historical cutoff will not be included.")] = None,
|
|
1121
1121
|
with_milestones: Annotated[Optional[StrictBool], Field(description="If true, includes related milestones as a field alongside events.")] = None,
|
|
1122
|
-
status: Annotated[Optional[StrictStr], Field(description="Filter by event status. Possible values are 'open', 'closed', 'settled'. Leave empty to return events with any status.")] = None,
|
|
1122
|
+
status: Annotated[Optional[StrictStr], Field(description="Filter by event status. Possible values are 'unopened', 'open', 'closed', 'settled'. Leave empty to return events with any status.")] = None,
|
|
1123
1123
|
series_ticker: Annotated[Optional[StrictStr], Field(description="Filter by series ticker")] = None,
|
|
1124
1124
|
min_close_ts: Annotated[Optional[StrictInt], Field(description="Filter events with at least one market with close timestamp greater than this Unix timestamp (in seconds).")] = None,
|
|
1125
1125
|
min_updated_ts: Annotated[Optional[StrictInt], Field(description="Filter events with metadata updated after this Unix timestamp (in seconds). Use this to efficiently poll for changes.")] = None,
|
|
@@ -1148,7 +1148,7 @@ class EventsApi:
|
|
|
1148
1148
|
:type with_nested_markets: bool
|
|
1149
1149
|
:param with_milestones: If true, includes related milestones as a field alongside events.
|
|
1150
1150
|
:type with_milestones: bool
|
|
1151
|
-
:param status: Filter by event status. Possible values are 'open', 'closed', 'settled'. Leave empty to return events with any status.
|
|
1151
|
+
:param status: Filter by event status. Possible values are 'unopened', 'open', 'closed', 'settled'. Leave empty to return events with any status.
|
|
1152
1152
|
:type status: str
|
|
1153
1153
|
:param series_ticker: Filter by series ticker
|
|
1154
1154
|
:type series_ticker: str
|
{kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/api/exchange_api.py
RENAMED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Manually defined OpenAPI spec for endpoints being migrated to spec-first approach
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 3.
|
|
8
|
+
The version of the OpenAPI document: 3.11.0
|
|
9
9
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
10
|
|
|
11
11
|
Do not edit the class manually.
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Manually defined OpenAPI spec for endpoints being migrated to spec-first approach
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 3.
|
|
8
|
+
The version of the OpenAPI document: 3.11.0
|
|
9
9
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
10
|
|
|
11
11
|
Do not edit the class manually.
|
{kalshi_python_sync-3.9.0 → kalshi_python_sync-3.11.0}/kalshi_python_sync/api/historical_api.py
RENAMED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Manually defined OpenAPI spec for endpoints being migrated to spec-first approach
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 3.
|
|
8
|
+
The version of the OpenAPI document: 3.11.0
|
|
9
9
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
10
|
|
|
11
11
|
Do not edit the class manually.
|
|
@@ -930,7 +930,7 @@ class HistoricalApi:
|
|
|
930
930
|
@validate_call
|
|
931
931
|
def get_historical_markets_with_http_info(
|
|
932
932
|
self,
|
|
933
|
-
limit: Annotated[Optional[Annotated[int, Field(le=1000, strict=True, ge=
|
|
933
|
+
limit: Annotated[Optional[Annotated[int, Field(le=1000, strict=True, ge=0)]], Field(description="Number of results per page. Defaults to 100. Maximum value is 1000.")] = None,
|
|
934
934
|
cursor: Annotated[Optional[StrictStr], Field(description="Pagination cursor. Use the cursor value returned from the previous response to get the next page of results. Leave empty for the first page.")] = None,
|
|
935
935
|
tickers: Annotated[Optional[StrictStr], Field(description="Filter by specific market tickers. Comma-separated list of market tickers to retrieve.")] = None,
|
|
936
936
|
event_ticker: Annotated[Optional[StrictStr], Field(description="Event ticker to filter by. Only a single event ticker is supported.")] = None,
|
|
@@ -1015,7 +1015,7 @@ class HistoricalApi:
|
|
|
1015
1015
|
@validate_call
|
|
1016
1016
|
def get_historical_markets_without_preload_content(
|
|
1017
1017
|
self,
|
|
1018
|
-
limit: Annotated[Optional[Annotated[int, Field(le=1000, strict=True, ge=
|
|
1018
|
+
limit: Annotated[Optional[Annotated[int, Field(le=1000, strict=True, ge=0)]], Field(description="Number of results per page. Defaults to 100. Maximum value is 1000.")] = None,
|
|
1019
1019
|
cursor: Annotated[Optional[StrictStr], Field(description="Pagination cursor. Use the cursor value returned from the previous response to get the next page of results. Leave empty for the first page.")] = None,
|
|
1020
1020
|
tickers: Annotated[Optional[StrictStr], Field(description="Filter by specific market tickers. Comma-separated list of market tickers to retrieve.")] = None,
|
|
1021
1021
|
event_ticker: Annotated[Optional[StrictStr], Field(description="Event ticker to filter by. Only a single event ticker is supported.")] = None,
|
|
@@ -1882,7 +1882,7 @@ class HistoricalApi:
|
|
|
1882
1882
|
ticker: Annotated[Optional[StrictStr], Field(description="Filter by market ticker")] = None,
|
|
1883
1883
|
min_ts: Annotated[Optional[StrictInt], Field(description="Filter items after this Unix timestamp")] = None,
|
|
1884
1884
|
max_ts: Annotated[Optional[StrictInt], Field(description="Filter items before this Unix timestamp")] = None,
|
|
1885
|
-
limit: Annotated[Optional[Annotated[int, Field(le=1000, strict=True, ge=
|
|
1885
|
+
limit: Annotated[Optional[Annotated[int, Field(le=1000, strict=True, ge=0)]], Field(description="Number of results per page. Defaults to 100. Maximum value is 1000.")] = None,
|
|
1886
1886
|
cursor: Annotated[Optional[StrictStr], Field(description="Pagination cursor. Use the cursor value returned from the previous response to get the next page of results. Leave empty for the first page.")] = None,
|
|
1887
1887
|
_request_timeout: Union[
|
|
1888
1888
|
None,
|
|
@@ -1968,7 +1968,7 @@ class HistoricalApi:
|
|
|
1968
1968
|
ticker: Annotated[Optional[StrictStr], Field(description="Filter by market ticker")] = None,
|
|
1969
1969
|
min_ts: Annotated[Optional[StrictInt], Field(description="Filter items after this Unix timestamp")] = None,
|
|
1970
1970
|
max_ts: Annotated[Optional[StrictInt], Field(description="Filter items before this Unix timestamp")] = None,
|
|
1971
|
-
limit: Annotated[Optional[Annotated[int, Field(le=1000, strict=True, ge=
|
|
1971
|
+
limit: Annotated[Optional[Annotated[int, Field(le=1000, strict=True, ge=0)]], Field(description="Number of results per page. Defaults to 100. Maximum value is 1000.")] = None,
|
|
1972
1972
|
cursor: Annotated[Optional[StrictStr], Field(description="Pagination cursor. Use the cursor value returned from the previous response to get the next page of results. Leave empty for the first page.")] = None,
|
|
1973
1973
|
_request_timeout: Union[
|
|
1974
1974
|
None,
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Manually defined OpenAPI spec for endpoints being migrated to spec-first approach
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 3.
|
|
8
|
+
The version of the OpenAPI document: 3.11.0
|
|
9
9
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
10
|
|
|
11
11
|
Do not edit the class manually.
|