diff --git a/README.rst b/README.rst index 57e72aa..98048ae 100644 --- a/README.rst +++ b/README.rst @@ -29,69 +29,7 @@ Features update ---------- -- 2024 08/19 -1. 【FIX】 Fix the issue with incorrect fields in the parameters. - -- 2024 07/25 -1. 【NEW】GET /api/v3/hf/margin/order/active/symbols: Margin.get_active_hf_order_symbols -2. 【NEW】GET /api/v3/margin/symbols: Margin.get_cross_margin_trading_pairs_configuration -3. 【NEW】POST /api/v3/position/update-user-leverage: Margin.modify_leverage_multiplier -4. 【NEW】GET /api/v1/otc-loan/loan: Margin.get_information_onoff_exchange_funding_and_loans -5. 【NEW】GET /api/v1/otc-loan/accounts: Margin.get_information_on_accounts_involved_in_off_exchange_loans -6. 【UPDATE】POST /api/v3/margin/borrow -add isHf: Margin.margin_borrowing -7. 【UPDATE】POST /api/v3/margin/repay -add isHf: Margin.repayment -8. 【NEW】POST /api/v3/hf/margin/order: Margin.place_hf_order -9. 【NEW】POST /api/v3/hf/margin/order/test: Margin.place_hf_order_test -10. 【NEW】DELETE /api/v3/hf/margin/orders/{orderId}: Margin.cancel_hf_order_by_orderid -11. 【NEW】DELETE /api/v3/hf/margin/orders/client-order/{clientOid}: Margin.cancel_hf_order_by_clientoid -12. 【NEW】DELETE /api/v3/hf/margin/orders: Margin.cancel_all_hf_orders_by_symbol -13. 【NEW】GET /api/v3/hf/margin/orders/active: Margin.get_active_hf_orders_list -14. 【NEW】GET /api/v3/hf/margin/orders/done: Margin.get_hf_filled_list -15. 【NEW】GET /api/v3/hf/margin/orders/{orderId}: Margin.get_hf_order_details_by_orderid -16. 【NEW】GET /api/v3/hf/margin/orders/client-order/{clientOid}: Margin.get_hf_order_details_by_clientoid -17. 【NEW】GET /api/v3/hf/margin/fills: Margin.get_hf_transaction_records -18. 【NEW】GET /api/v3/currencies/{currency}: Market.get_currency_detail_v3 - - -- 2024 07/07 -1. [NEW] POST /api/v1/earn/orders: Earn.subscribe_to_earn_fixed_income_products -2. [NEW] DELETE /api/v1/earn/orders: Earn.redeem_by_earn_holding_id -3. [NEW] GET /api/v1/earn/redeem-preview: Earn.get_earn_redeem_preview_by_holding_id -4. [NEW] GET /api/v1/earn/saving/products: Earn.get_earn_savings_products -5. [NEW] GET /api/v1/earn/hold-assets: Earn.get_earn_fixed_income_current_holdings -6. [NEW] GET /api/v1/earn/promotion/products: Earn.get_earn_limited_time_promotion_products -7. [NEW] GET /api/v1/earn/kcs-staking/products: Earn.get_earn_kcs_staking_products -8. [NEW] GET /api/v1/earn/staking/products: Earn.get_earn_staking_products -9. [NEW] GET /api/v1/earn/eth-staking/products: Earn.get_earn_eth_staking_products - -- 2024 02/26 -1. add Api: margin.get_interest_rates: `Get Interest Rates `_. - -- 2024 02/19 - 1. trade.get_hf_filled_list: same to trade.get_hf_transaction_records `Get HF Filled List `_ - - :red:`The trade.get_hf_transaction_records method will be removed at some time in the future` - 2. trade.get_hf_completed_orders: same to trade.get_filled_hf_order `Get HF Completed order list `_ - - :red:`The trade.get_filled_hf_order method will be removed at some time in the future` - - -- 2024 02/07 - 1. margin.get_etf_info: `Get Leveraged Token Info `_. - 2. margin.get_margin_account_Detail: `Get Account Detail - Cross Margin `_. - 3. margin.get_isolated_margin_account_detail: `Get Account Detail - Isolated Margin `_. - 4. margin.get_margin_currencies: `Get Cross/Isolated Margin Risk Limit/Currency config `_. - 5. trade.create_oco_order: `Place Order `_. - 6. trade.cancel_oco_order: `Cancel Order by orderId `_. - 7. trade.cancel_oco_order_by_clientOid: `Cancel Order by clientOid `_. - 8. trade.cancel_all_oco_orders: `Cancel Multiple Orders `_. - 9. trade.get_oco_order_by_orderId: `Get Order Info by orderId `_. - 10. trade.get_oco_order_by_client_oid: `Get Order Info by clientOid `_. - 11. trade.get_oco_orders: `Get Order List `_. - 12. trade.get_oco_order_details: `Get Order Details by orderId `_. - 13. trade.cancel_all_hf_orders: `Cancel all HF orders `_. - 14. customized websocket: ./kucoin/example_customized_ws_private.py | kucoin/example_customized_ws_public.py - - sock.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1) - 15. set api TCP_NODELAY:After instantiating the client, you can cancel the Nagle algorithm through client.TCP_NODELAY=1 (default is 0) - - kucoin/example_client_TCP_NODELAY.py +https://github.com/Kucoin/kucoin-python-sdk/releases Quick Start ----------- diff --git a/setup.py b/setup.py index 9a3220b..fae2c0c 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name='kucoin-python', - version='v1.0.24', + version='v1.0.25', packages=['kucoin', 'kucoin/base_request', 'kucoin/margin', 'kucoin/market', 'kucoin/trade', 'kucoin/user','kucoin/lending','kucoin/earn', 'kucoin/websocket', 'kucoin/ws_token'], license="MIT",