upstox-python-sdk 2.12.0__tar.gz → 2.13.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.
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/PKG-INFO +2 -2
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/README.md +1 -1
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/setup.py +1 -1
- upstox_python_sdk-2.13.0/test/test_get_gtt_order_response.py +39 -0
- upstox_python_sdk-2.13.0/test/test_gtt_cancel_order_request.py +39 -0
- upstox_python_sdk-2.13.0/test/test_gtt_modify_order_request.py +39 -0
- upstox_python_sdk-2.13.0/test/test_gtt_order_data.py +39 -0
- upstox_python_sdk-2.13.0/test/test_gtt_order_details.py +39 -0
- upstox_python_sdk-2.13.0/test/test_gtt_place_order_request.py +39 -0
- upstox_python_sdk-2.13.0/test/test_gtt_rule.py +39 -0
- upstox_python_sdk-2.13.0/test/test_gtt_trigger_order_response.py +39 -0
- upstox_python_sdk-2.13.0/test/test_rule.py +39 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/__init__.py +9 -0
- upstox_python_sdk-2.13.0/upstox_client/api/order_controller_v_3_api.py +720 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/api_client.py +1 -1
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/__init__.py +9 -0
- upstox_python_sdk-2.13.0/upstox_client/models/get_gtt_order_response.py +170 -0
- upstox_python_sdk-2.13.0/upstox_client/models/gtt_cancel_order_request.py +113 -0
- upstox_python_sdk-2.13.0/upstox_client/models/gtt_modify_order_request.py +206 -0
- upstox_python_sdk-2.13.0/upstox_client/models/gtt_order_data.py +112 -0
- upstox_python_sdk-2.13.0/upstox_client/models/gtt_order_details.py +344 -0
- upstox_python_sdk-2.13.0/upstox_client/models/gtt_place_order_request.py +276 -0
- upstox_python_sdk-2.13.0/upstox_client/models/gtt_rule.py +183 -0
- upstox_python_sdk-2.13.0/upstox_client/models/gtt_trigger_order_response.py +168 -0
- upstox_python_sdk-2.13.0/upstox_client/models/rule.py +240 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_python_sdk.egg-info/PKG-INFO +2 -2
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_python_sdk.egg-info/SOURCES.txt +18 -0
- upstox_python_sdk-2.12.0/upstox_client/api/order_controller_v_3_api.py +0 -332
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/LICENSE.txt +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/setup.cfg +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/__init__.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/sanity_test.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_analytics_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_api_gateway_error_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_batch_execution_summary.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_brokerage_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_brokerage_taxes.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_brokerage_wrapper_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_cancel_or_exit_multi_order_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_cancel_or_exit_multi_order_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_cancel_or_exit_order_error_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_cancel_order_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_cancel_order_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_cancel_order_v3_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_charge_api.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_convert_position_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_convert_position_request.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_convert_position_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_depth.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_depth_map.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_dp_plan.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_exchange_timing_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_get_brokerage_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_get_exchange_timing_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_get_full_market_quote_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_get_historical_candle_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_get_holdings_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_get_holiday_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_get_intra_day_candle_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_get_market_quote_last_traded_price_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_get_market_quote_ohlc_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_get_market_status_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_get_option_chain_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_get_option_contract_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_get_order_book_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_get_order_details_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_get_order_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_get_position_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_get_profile_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_get_profit_and_loss_charges_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_get_trade_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_get_trade_wise_profit_and_loss_data_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_get_trade_wise_profit_and_loss_meta_data_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_get_user_fund_margin_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_historical_candle_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_history_api.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_holdings_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_holiday_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_indie_user_init_token_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_indie_user_init_token_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_indie_user_token_request.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_instrument.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_instrument_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_intra_day_candle_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_login_api.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_logout_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_margin.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_margin_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_margin_request.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_market_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_market_holidays_and_timings_api.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_market_quote_api.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_market_quote_ohlc.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_market_quote_symbol.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_market_quote_symbol_ltp.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_market_status_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_modify_order_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_modify_order_request.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_modify_order_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_modify_order_v3_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_multi_order_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_multi_order_error.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_multi_order_request.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_multi_order_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_multi_order_summary.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_multi_order_v3_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_o_auth_client_exception.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_o_auth_client_exception_cause.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_o_auth_client_exception_cause_stack_trace.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_o_auth_client_exception_cause_suppressed.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_ohlc.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_option_strike_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_options_api.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_order_api.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_order_book_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_order_controller_v_3_api.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_order_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_order_metadata.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_other_taxes.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_place_order_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_place_order_request.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_place_order_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_place_order_v3_request.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_place_order_v3_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_portfolio_api.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_position_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_post_margin_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_post_trade_api.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_problem.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_profile_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_profit_and_loss_charges_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_profit_and_loss_charges_taxes.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_profit_and_loss_charges_wrapper_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_profit_and_loss_meta_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_profit_and_loss_meta_data_wrapper.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_profit_and_loss_other_charges_taxes.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_put_call_option_chain_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_token_request.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_token_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_trade_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_trade_history_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_trade_history_response_meta_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_trade_history_response_page_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_trade_history_response_trade_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_trade_profit_and_loss_api.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_trade_wise_meta_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_trade_wise_profit_and_loss_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_user_api.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_user_fund_margin_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_websocket_api.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_websocket_auth_redirect_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/test/test_websocket_auth_redirect_response_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/api/__init__.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/api/charge_api.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/api/history_api.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/api/login_api.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/api/market_holidays_and_timings_api.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/api/market_quote_api.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/api/options_api.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/api/order_api.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/api/portfolio_api.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/api/post_trade_api.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/api/trade_profit_and_loss_api.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/api/user_api.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/api/websocket_api.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/configuration.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/feeder/__init__.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/feeder/feeder.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/feeder/market_data_feeder.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/feeder/market_data_feeder_v3.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/feeder/market_data_streamer.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/feeder/market_data_streamer_v3.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/feeder/portfolio_data_feeder.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/feeder/portfolio_data_streamer.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/feeder/proto/MarketDataFeedV3_pb2.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/feeder/proto/MarketDataFeed_pb2.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/feeder/proto/__init__.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/feeder/streamer.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/analytics_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/api_gateway_error_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/batch_execution_summary.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/brokerage_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/brokerage_taxes.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/brokerage_wrapper_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/cancel_or_exit_multi_order_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/cancel_or_exit_multi_order_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/cancel_or_exit_order_error_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/cancel_order_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/cancel_order_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/cancel_order_v3_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/convert_position_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/convert_position_request.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/convert_position_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/depth.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/depth_map.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/dp_plan.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/exchange_timing_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/get_brokerage_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/get_exchange_timing_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/get_full_market_quote_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/get_historical_candle_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/get_holdings_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/get_holiday_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/get_intra_day_candle_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/get_market_quote_last_traded_price_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/get_market_quote_ohlc_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/get_market_status_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/get_option_chain_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/get_option_contract_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/get_order_book_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/get_order_details_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/get_order_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/get_position_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/get_profile_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/get_profit_and_loss_charges_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/get_trade_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/get_trade_wise_profit_and_loss_data_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/get_trade_wise_profit_and_loss_meta_data_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/get_user_fund_margin_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/historical_candle_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/holdings_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/holiday_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/indie_user_init_token_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/indie_user_init_token_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/indie_user_token_request.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/instrument.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/instrument_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/intra_day_candle_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/logout_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/margin.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/margin_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/margin_request.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/market_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/market_quote_ohlc.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/market_quote_symbol.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/market_quote_symbol_ltp.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/market_status_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/modify_order_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/modify_order_request.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/modify_order_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/modify_order_v3_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/multi_order_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/multi_order_error.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/multi_order_request.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/multi_order_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/multi_order_summary.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/multi_order_v3_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/o_auth_client_exception.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/o_auth_client_exception_cause.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/o_auth_client_exception_cause_stack_trace.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/o_auth_client_exception_cause_suppressed.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/ohlc.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/option_strike_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/order_book_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/order_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/order_metadata.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/other_taxes.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/place_order_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/place_order_request.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/place_order_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/place_order_v3_request.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/place_order_v3_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/position_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/post_margin_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/problem.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/profile_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/profit_and_loss_charges_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/profit_and_loss_charges_taxes.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/profit_and_loss_charges_wrapper_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/profit_and_loss_meta_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/profit_and_loss_meta_data_wrapper.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/profit_and_loss_other_charges_taxes.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/put_call_option_chain_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/token_request.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/token_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/trade_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/trade_history_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/trade_history_response_meta_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/trade_history_response_page_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/trade_history_response_trade_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/trade_wise_meta_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/trade_wise_profit_and_loss_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/user_fund_margin_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/websocket_auth_redirect_response.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/models/websocket_auth_redirect_response_data.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_client/rest.py +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_python_sdk.egg-info/dependency_links.txt +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_python_sdk.egg-info/requires.txt +0 -0
- {upstox_python_sdk-2.12.0 → upstox_python_sdk-2.13.0}/upstox_python_sdk.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: upstox-python-sdk
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.13.0
|
|
4
4
|
Summary: Upstox Developer API
|
|
5
5
|
Home-page: https://github.com/upstox/upstox-python
|
|
6
6
|
License: MIT
|
|
@@ -26,7 +26,7 @@ The official Python client for communicating with the <a href="https://upstox.co
|
|
|
26
26
|
Upstox API is a set of rest APIs that provide data required to build a complete investment and trading platform. Execute orders in real time, manage user portfolio, stream live market data (using Websocket), and more, with the easy to understand API collection.
|
|
27
27
|
|
|
28
28
|
- API version: v2
|
|
29
|
-
- Package version: 2.
|
|
29
|
+
- Package version: 2.13.0
|
|
30
30
|
- Build package: io.swagger.codegen.v3.generators.python.PythonClientCodegen
|
|
31
31
|
|
|
32
32
|
This Python package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project.
|
|
@@ -9,7 +9,7 @@ The official Python client for communicating with the <a href="https://upstox.co
|
|
|
9
9
|
Upstox API is a set of rest APIs that provide data required to build a complete investment and trading platform. Execute orders in real time, manage user portfolio, stream live market data (using Websocket), and more, with the easy to understand API collection.
|
|
10
10
|
|
|
11
11
|
- API version: v2
|
|
12
|
-
- Package version: 2.
|
|
12
|
+
- Package version: 2.13.0
|
|
13
13
|
- Build package: io.swagger.codegen.v3.generators.python.PythonClientCodegen
|
|
14
14
|
|
|
15
15
|
This Python package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project.
|
|
@@ -18,7 +18,7 @@ this_directory = Path(__file__).parent
|
|
|
18
18
|
long_description = (this_directory / "README.md").read_text()
|
|
19
19
|
|
|
20
20
|
NAME = "upstox-python-sdk"
|
|
21
|
-
VERSION = "2.
|
|
21
|
+
VERSION = "2.13.0"
|
|
22
22
|
# To install the library, run the following
|
|
23
23
|
#
|
|
24
24
|
# python setup.py install
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
OpenAPI definition
|
|
5
|
+
|
|
6
|
+
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501
|
|
7
|
+
|
|
8
|
+
OpenAPI spec version: v0
|
|
9
|
+
|
|
10
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
from __future__ import absolute_import
|
|
14
|
+
|
|
15
|
+
import unittest
|
|
16
|
+
|
|
17
|
+
import upstox_client
|
|
18
|
+
from upstox_client.models.get_gtt_order_response import GetGttOrderResponse # noqa: E501
|
|
19
|
+
from upstox_client.rest import ApiException
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
class TestGetGttOrderResponse(unittest.TestCase):
|
|
23
|
+
"""GetGttOrderResponse unit test stubs"""
|
|
24
|
+
|
|
25
|
+
def setUp(self):
|
|
26
|
+
pass
|
|
27
|
+
|
|
28
|
+
def tearDown(self):
|
|
29
|
+
pass
|
|
30
|
+
|
|
31
|
+
def testGetGttOrderResponse(self):
|
|
32
|
+
"""Test GetGttOrderResponse"""
|
|
33
|
+
# FIXME: construct object with mandatory attributes with example values
|
|
34
|
+
# model = upstox_client.models.get_gtt_order_response.GetGttOrderResponse() # noqa: E501
|
|
35
|
+
pass
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
if __name__ == '__main__':
|
|
39
|
+
unittest.main()
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
OpenAPI definition
|
|
5
|
+
|
|
6
|
+
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501
|
|
7
|
+
|
|
8
|
+
OpenAPI spec version: v0
|
|
9
|
+
|
|
10
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
from __future__ import absolute_import
|
|
14
|
+
|
|
15
|
+
import unittest
|
|
16
|
+
|
|
17
|
+
import upstox_client
|
|
18
|
+
from upstox_client.models.gtt_cancel_order_request import GttCancelOrderRequest # noqa: E501
|
|
19
|
+
from upstox_client.rest import ApiException
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
class TestGttCancelOrderRequest(unittest.TestCase):
|
|
23
|
+
"""GttCancelOrderRequest unit test stubs"""
|
|
24
|
+
|
|
25
|
+
def setUp(self):
|
|
26
|
+
pass
|
|
27
|
+
|
|
28
|
+
def tearDown(self):
|
|
29
|
+
pass
|
|
30
|
+
|
|
31
|
+
def testGttCancelOrderRequest(self):
|
|
32
|
+
"""Test GttCancelOrderRequest"""
|
|
33
|
+
# FIXME: construct object with mandatory attributes with example values
|
|
34
|
+
# model = upstox_client.models.gtt_cancel_order_request.GttCancelOrderRequest() # noqa: E501
|
|
35
|
+
pass
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
if __name__ == '__main__':
|
|
39
|
+
unittest.main()
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
OpenAPI definition
|
|
5
|
+
|
|
6
|
+
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501
|
|
7
|
+
|
|
8
|
+
OpenAPI spec version: v0
|
|
9
|
+
|
|
10
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
from __future__ import absolute_import
|
|
14
|
+
|
|
15
|
+
import unittest
|
|
16
|
+
|
|
17
|
+
import upstox_client
|
|
18
|
+
from upstox_client.models.gtt_modify_order_request import GttModifyOrderRequest # noqa: E501
|
|
19
|
+
from upstox_client.rest import ApiException
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
class TestGttModifyOrderRequest(unittest.TestCase):
|
|
23
|
+
"""GttModifyOrderRequest unit test stubs"""
|
|
24
|
+
|
|
25
|
+
def setUp(self):
|
|
26
|
+
pass
|
|
27
|
+
|
|
28
|
+
def tearDown(self):
|
|
29
|
+
pass
|
|
30
|
+
|
|
31
|
+
def testGttModifyOrderRequest(self):
|
|
32
|
+
"""Test GttModifyOrderRequest"""
|
|
33
|
+
# FIXME: construct object with mandatory attributes with example values
|
|
34
|
+
# model = upstox_client.models.gtt_modify_order_request.GttModifyOrderRequest() # noqa: E501
|
|
35
|
+
pass
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
if __name__ == '__main__':
|
|
39
|
+
unittest.main()
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
OpenAPI definition
|
|
5
|
+
|
|
6
|
+
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501
|
|
7
|
+
|
|
8
|
+
OpenAPI spec version: v0
|
|
9
|
+
|
|
10
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
from __future__ import absolute_import
|
|
14
|
+
|
|
15
|
+
import unittest
|
|
16
|
+
|
|
17
|
+
import upstox_client
|
|
18
|
+
from upstox_client.models.gtt_order_data import GttOrderData # noqa: E501
|
|
19
|
+
from upstox_client.rest import ApiException
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
class TestGttOrderData(unittest.TestCase):
|
|
23
|
+
"""GttOrderData unit test stubs"""
|
|
24
|
+
|
|
25
|
+
def setUp(self):
|
|
26
|
+
pass
|
|
27
|
+
|
|
28
|
+
def tearDown(self):
|
|
29
|
+
pass
|
|
30
|
+
|
|
31
|
+
def testGttOrderData(self):
|
|
32
|
+
"""Test GttOrderData"""
|
|
33
|
+
# FIXME: construct object with mandatory attributes with example values
|
|
34
|
+
# model = upstox_client.models.gtt_order_data.GttOrderData() # noqa: E501
|
|
35
|
+
pass
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
if __name__ == '__main__':
|
|
39
|
+
unittest.main()
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
OpenAPI definition
|
|
5
|
+
|
|
6
|
+
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501
|
|
7
|
+
|
|
8
|
+
OpenAPI spec version: v0
|
|
9
|
+
|
|
10
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
from __future__ import absolute_import
|
|
14
|
+
|
|
15
|
+
import unittest
|
|
16
|
+
|
|
17
|
+
import upstox_client
|
|
18
|
+
from upstox_client.models.gtt_order_details import GttOrderDetails # noqa: E501
|
|
19
|
+
from upstox_client.rest import ApiException
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
class TestGttOrderDetails(unittest.TestCase):
|
|
23
|
+
"""GttOrderDetails unit test stubs"""
|
|
24
|
+
|
|
25
|
+
def setUp(self):
|
|
26
|
+
pass
|
|
27
|
+
|
|
28
|
+
def tearDown(self):
|
|
29
|
+
pass
|
|
30
|
+
|
|
31
|
+
def testGttOrderDetails(self):
|
|
32
|
+
"""Test GttOrderDetails"""
|
|
33
|
+
# FIXME: construct object with mandatory attributes with example values
|
|
34
|
+
# model = upstox_client.models.gtt_order_details.GttOrderDetails() # noqa: E501
|
|
35
|
+
pass
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
if __name__ == '__main__':
|
|
39
|
+
unittest.main()
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
OpenAPI definition
|
|
5
|
+
|
|
6
|
+
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501
|
|
7
|
+
|
|
8
|
+
OpenAPI spec version: v0
|
|
9
|
+
|
|
10
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
from __future__ import absolute_import
|
|
14
|
+
|
|
15
|
+
import unittest
|
|
16
|
+
|
|
17
|
+
import upstox_client
|
|
18
|
+
from upstox_client.models.gtt_place_order_request import GttPlaceOrderRequest # noqa: E501
|
|
19
|
+
from upstox_client.rest import ApiException
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
class TestGttPlaceOrderRequest(unittest.TestCase):
|
|
23
|
+
"""GttPlaceOrderRequest unit test stubs"""
|
|
24
|
+
|
|
25
|
+
def setUp(self):
|
|
26
|
+
pass
|
|
27
|
+
|
|
28
|
+
def tearDown(self):
|
|
29
|
+
pass
|
|
30
|
+
|
|
31
|
+
def testGttPlaceOrderRequest(self):
|
|
32
|
+
"""Test GttPlaceOrderRequest"""
|
|
33
|
+
# FIXME: construct object with mandatory attributes with example values
|
|
34
|
+
# model = upstox_client.models.gtt_place_order_request.GttPlaceOrderRequest() # noqa: E501
|
|
35
|
+
pass
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
if __name__ == '__main__':
|
|
39
|
+
unittest.main()
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
OpenAPI definition
|
|
5
|
+
|
|
6
|
+
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501
|
|
7
|
+
|
|
8
|
+
OpenAPI spec version: v0
|
|
9
|
+
|
|
10
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
from __future__ import absolute_import
|
|
14
|
+
|
|
15
|
+
import unittest
|
|
16
|
+
|
|
17
|
+
import upstox_client
|
|
18
|
+
from upstox_client.models.gtt_rule import GttRule # noqa: E501
|
|
19
|
+
from upstox_client.rest import ApiException
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
class TestGttRule(unittest.TestCase):
|
|
23
|
+
"""GttRule unit test stubs"""
|
|
24
|
+
|
|
25
|
+
def setUp(self):
|
|
26
|
+
pass
|
|
27
|
+
|
|
28
|
+
def tearDown(self):
|
|
29
|
+
pass
|
|
30
|
+
|
|
31
|
+
def testGttRule(self):
|
|
32
|
+
"""Test GttRule"""
|
|
33
|
+
# FIXME: construct object with mandatory attributes with example values
|
|
34
|
+
# model = upstox_client.models.gtt_rule.GttRule() # noqa: E501
|
|
35
|
+
pass
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
if __name__ == '__main__':
|
|
39
|
+
unittest.main()
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
OpenAPI definition
|
|
5
|
+
|
|
6
|
+
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501
|
|
7
|
+
|
|
8
|
+
OpenAPI spec version: v0
|
|
9
|
+
|
|
10
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
from __future__ import absolute_import
|
|
14
|
+
|
|
15
|
+
import unittest
|
|
16
|
+
|
|
17
|
+
import upstox_client
|
|
18
|
+
from upstox_client.models.gtt_trigger_order_response import GttTriggerOrderResponse # noqa: E501
|
|
19
|
+
from upstox_client.rest import ApiException
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
class TestGttTriggerOrderResponse(unittest.TestCase):
|
|
23
|
+
"""GttTriggerOrderResponse unit test stubs"""
|
|
24
|
+
|
|
25
|
+
def setUp(self):
|
|
26
|
+
pass
|
|
27
|
+
|
|
28
|
+
def tearDown(self):
|
|
29
|
+
pass
|
|
30
|
+
|
|
31
|
+
def testGttTriggerOrderResponse(self):
|
|
32
|
+
"""Test GttTriggerOrderResponse"""
|
|
33
|
+
# FIXME: construct object with mandatory attributes with example values
|
|
34
|
+
# model = upstox_client.models.gtt_trigger_order_response.GttTriggerOrderResponse() # noqa: E501
|
|
35
|
+
pass
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
if __name__ == '__main__':
|
|
39
|
+
unittest.main()
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
OpenAPI definition
|
|
5
|
+
|
|
6
|
+
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501
|
|
7
|
+
|
|
8
|
+
OpenAPI spec version: v0
|
|
9
|
+
|
|
10
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
from __future__ import absolute_import
|
|
14
|
+
|
|
15
|
+
import unittest
|
|
16
|
+
|
|
17
|
+
import upstox_client
|
|
18
|
+
from upstox_client.models.rule import Rule # noqa: E501
|
|
19
|
+
from upstox_client.rest import ApiException
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
class TestRule(unittest.TestCase):
|
|
23
|
+
"""Rule unit test stubs"""
|
|
24
|
+
|
|
25
|
+
def setUp(self):
|
|
26
|
+
pass
|
|
27
|
+
|
|
28
|
+
def tearDown(self):
|
|
29
|
+
pass
|
|
30
|
+
|
|
31
|
+
def testRule(self):
|
|
32
|
+
"""Test Rule"""
|
|
33
|
+
# FIXME: construct object with mandatory attributes with example values
|
|
34
|
+
# model = upstox_client.models.rule.Rule() # noqa: E501
|
|
35
|
+
pass
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
if __name__ == '__main__':
|
|
39
|
+
unittest.main()
|
|
@@ -58,6 +58,7 @@ from upstox_client.models.exchange_timing_data import ExchangeTimingData
|
|
|
58
58
|
from upstox_client.models.get_brokerage_response import GetBrokerageResponse
|
|
59
59
|
from upstox_client.models.get_exchange_timing_response import GetExchangeTimingResponse
|
|
60
60
|
from upstox_client.models.get_full_market_quote_response import GetFullMarketQuoteResponse
|
|
61
|
+
from upstox_client.models.get_gtt_order_response import GetGttOrderResponse
|
|
61
62
|
from upstox_client.models.get_historical_candle_response import GetHistoricalCandleResponse
|
|
62
63
|
from upstox_client.models.get_holdings_response import GetHoldingsResponse
|
|
63
64
|
from upstox_client.models.get_holiday_response import GetHolidayResponse
|
|
@@ -77,6 +78,13 @@ from upstox_client.models.get_trade_response import GetTradeResponse
|
|
|
77
78
|
from upstox_client.models.get_trade_wise_profit_and_loss_data_response import GetTradeWiseProfitAndLossDataResponse
|
|
78
79
|
from upstox_client.models.get_trade_wise_profit_and_loss_meta_data_response import GetTradeWiseProfitAndLossMetaDataResponse
|
|
79
80
|
from upstox_client.models.get_user_fund_margin_response import GetUserFundMarginResponse
|
|
81
|
+
from upstox_client.models.gtt_cancel_order_request import GttCancelOrderRequest
|
|
82
|
+
from upstox_client.models.gtt_modify_order_request import GttModifyOrderRequest
|
|
83
|
+
from upstox_client.models.gtt_order_data import GttOrderData
|
|
84
|
+
from upstox_client.models.gtt_order_details import GttOrderDetails
|
|
85
|
+
from upstox_client.models.gtt_place_order_request import GttPlaceOrderRequest
|
|
86
|
+
from upstox_client.models.gtt_rule import GttRule
|
|
87
|
+
from upstox_client.models.gtt_trigger_order_response import GttTriggerOrderResponse
|
|
80
88
|
from upstox_client.models.historical_candle_data import HistoricalCandleData
|
|
81
89
|
from upstox_client.models.holdings_data import HoldingsData
|
|
82
90
|
from upstox_client.models.holiday_data import HolidayData
|
|
@@ -131,6 +139,7 @@ from upstox_client.models.profit_and_loss_meta_data import ProfitAndLossMetaData
|
|
|
131
139
|
from upstox_client.models.profit_and_loss_meta_data_wrapper import ProfitAndLossMetaDataWrapper
|
|
132
140
|
from upstox_client.models.profit_and_loss_other_charges_taxes import ProfitAndLossOtherChargesTaxes
|
|
133
141
|
from upstox_client.models.put_call_option_chain_data import PutCallOptionChainData
|
|
142
|
+
from upstox_client.models.rule import Rule
|
|
134
143
|
from upstox_client.models.token_request import TokenRequest
|
|
135
144
|
from upstox_client.models.token_response import TokenResponse
|
|
136
145
|
from upstox_client.models.trade_data import TradeData
|