bitget 0.0.67__py3-none-any.whl → 0.0.69__py3-none-any.whl
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.
- bitget/ccxt/__init__.py +1 -1
- bitget/ccxt/abstract/bitget.py +58 -0
- bitget/ccxt/async_support/__init__.py +1 -1
- bitget/ccxt/async_support/base/exchange.py +1 -1
- bitget/ccxt/async_support/bitget.py +469 -147
- bitget/ccxt/base/exchange.py +13 -4
- bitget/ccxt/bitget.py +469 -147
- bitget/ccxt/pro/__init__.py +1 -127
- {bitget-0.0.67.dist-info → bitget-0.0.69.dist-info}/METADATA +61 -1
- {bitget-0.0.67.dist-info → bitget-0.0.69.dist-info}/RECORD +11 -11
- {bitget-0.0.67.dist-info → bitget-0.0.69.dist-info}/WHEEL +0 -0
bitget/ccxt/pro/__init__.py
CHANGED
@@ -8,7 +8,7 @@ sys.modules['ccxt'] = ccxt_module
|
|
8
8
|
|
9
9
|
# ----------------------------------------------------------------------------
|
10
10
|
|
11
|
-
__version__ = '4.4.
|
11
|
+
__version__ = '4.4.90'
|
12
12
|
|
13
13
|
# ----------------------------------------------------------------------------
|
14
14
|
|
@@ -60,132 +60,6 @@ from ccxt.base.errors import UnsubscribeError # noqa: F4
|
|
60
60
|
from ccxt.base.errors import error_hierarchy # noqa: F401
|
61
61
|
# DO_NOT_REMOVE__ERROR_IMPORTS_END
|
62
62
|
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
63
|
from ccxt.pro.bitget import bitget # noqa: F401
|
190
64
|
|
191
65
|
exchanges = [ 'bitget',]
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: bitget
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.69
|
4
4
|
Summary: bitget crypto exchange api client
|
5
5
|
Project-URL: Homepage, https://github.com/ccxt/ccxt
|
6
6
|
Project-URL: Issues, https://github.com/ccxt/ccxt
|
@@ -141,6 +141,7 @@ You can also construct custom requests to available "implicit" endpoints
|
|
141
141
|
- `fetch_convert_trade_history(self, code: Str = None, since: Int = None, limit: Int = None, params={})`
|
142
142
|
- `fetch_cross_borrow_rate(self, code: str, params={})`
|
143
143
|
- `fetch_currencies(self, params={})`
|
144
|
+
- `fetch_default_markets(self, params)`
|
144
145
|
- `fetch_deposit_address(self, code: str, params={})`
|
145
146
|
- `fetch_deposit_withdraw_fees(self, codes: Strings = None, params={})`
|
146
147
|
- `fetch_deposits(self, code: Str = None, since: Int = None, limit: Int = None, params={})`
|
@@ -174,6 +175,7 @@ You can also construct custom requests to available "implicit" endpoints
|
|
174
175
|
- `fetch_trading_fee(self, symbol: str, params={})`
|
175
176
|
- `fetch_trading_fees(self, params={})`
|
176
177
|
- `fetch_transfers(self, code: Str = None, since: Int = None, limit: Int = None, params={})`
|
178
|
+
- `fetch_uta_markets(self, params)`
|
177
179
|
- `fetch_withdrawals(self, code: Str = None, since: Int = None, limit: Int = None, params={})`
|
178
180
|
- `add_margin(self, symbol: str, amount: float, params={})`
|
179
181
|
- `borrow_cross_margin(self, code: str, amount: float, params={})`
|
@@ -275,6 +277,20 @@ You can also construct custom requests to available "implicit" endpoints
|
|
275
277
|
- `public_margin_get_v2_margin_market_long_short_ratio(request)`
|
276
278
|
- `public_earn_get_v2_earn_loan_public_coininfos(request)`
|
277
279
|
- `public_earn_get_v2_earn_loan_public_hour_interest(request)`
|
280
|
+
- `public_uta_get_v3_market_instruments(request)`
|
281
|
+
- `public_uta_get_v3_market_tickers(request)`
|
282
|
+
- `public_uta_get_v3_market_orderbook(request)`
|
283
|
+
- `public_uta_get_v3_market_fills(request)`
|
284
|
+
- `public_uta_get_v3_market_open_interest(request)`
|
285
|
+
- `public_uta_get_v3_market_candles(request)`
|
286
|
+
- `public_uta_get_v3_market_history_candles(request)`
|
287
|
+
- `public_uta_get_v3_market_current_fund_rate(request)`
|
288
|
+
- `public_uta_get_v3_market_history_fund_rate(request)`
|
289
|
+
- `public_uta_get_v3_market_risk_reserve(request)`
|
290
|
+
- `public_uta_get_v3_market_discount_rate(request)`
|
291
|
+
- `public_uta_get_v3_market_margin_loans(request)`
|
292
|
+
- `public_uta_get_v3_market_position_tier(request)`
|
293
|
+
- `public_uta_get_v3_market_oi_limit(request)`
|
278
294
|
- `private_spot_get_spot_v1_wallet_deposit_address(request)`
|
279
295
|
- `private_spot_get_spot_v1_wallet_withdrawal_list(request)`
|
280
296
|
- `private_spot_get_spot_v1_wallet_deposit_list(request)`
|
@@ -706,6 +722,50 @@ You can also construct custom requests to available "implicit" endpoints
|
|
706
722
|
- `private_earn_post_v2_earn_loan_repay(request)`
|
707
723
|
- `private_earn_post_v2_earn_loan_revise_pledge(request)`
|
708
724
|
- `private_common_get_v2_common_trade_rate(request)`
|
725
|
+
- `private_uta_get_v3_account_assets(request)`
|
726
|
+
- `private_uta_get_v3_account_settings(request)`
|
727
|
+
- `private_uta_get_v3_account_financial_records(request)`
|
728
|
+
- `private_uta_get_v3_account_repayable_coins(request)`
|
729
|
+
- `private_uta_get_v3_account_payment_coins(request)`
|
730
|
+
- `private_uta_get_v3_account_convert_records(request)`
|
731
|
+
- `private_uta_get_v3_account_transferable_coins(request)`
|
732
|
+
- `private_uta_get_v3_account_sub_transfer_record(request)`
|
733
|
+
- `private_uta_get_v3_ins_loan_transfered(request)`
|
734
|
+
- `private_uta_get_v3_ins_loan_symbols(request)`
|
735
|
+
- `private_uta_get_v3_ins_loan_risk_unit(request)`
|
736
|
+
- `private_uta_get_v3_ins_loan_repaid_history(request)`
|
737
|
+
- `private_uta_get_v3_ins_loan_product_infos(request)`
|
738
|
+
- `private_uta_get_v3_ins_loan_loan_order(request)`
|
739
|
+
- `private_uta_get_v3_ins_loan_ltv_convert(request)`
|
740
|
+
- `private_uta_get_v3_ins_loan_ensure_coins_convert(request)`
|
741
|
+
- `private_uta_get_v3_position_current_position(request)`
|
742
|
+
- `private_uta_get_v3_position_history_position(request)`
|
743
|
+
- `private_uta_get_v3_trade_order_info(request)`
|
744
|
+
- `private_uta_get_v3_trade_unfilled_orders(request)`
|
745
|
+
- `private_uta_get_v3_trade_history_orders(request)`
|
746
|
+
- `private_uta_get_v3_trade_fills(request)`
|
747
|
+
- `private_uta_get_v3_user_sub_list(request)`
|
748
|
+
- `private_uta_get_v3_user_sub_api_list(request)`
|
749
|
+
- `private_uta_post_v3_account_set_leverage(request)`
|
750
|
+
- `private_uta_post_v3_account_set_hold_mode(request)`
|
751
|
+
- `private_uta_post_v3_account_repay(request)`
|
752
|
+
- `private_uta_post_v3_account_transfer(request)`
|
753
|
+
- `private_uta_post_v3_account_sub_transfer(request)`
|
754
|
+
- `private_uta_post_v3_account_max_open_available(request)`
|
755
|
+
- `private_uta_post_v3_ins_loan_bind_uid(request)`
|
756
|
+
- `private_uta_post_v3_trade_place_order(request)`
|
757
|
+
- `private_uta_post_v3_trade_modify_order(request)`
|
758
|
+
- `private_uta_post_v3_trade_cancel_order(request)`
|
759
|
+
- `private_uta_post_v3_trade_place_batch(request)`
|
760
|
+
- `private_uta_post_v3_trade_batch_modify_order(request)`
|
761
|
+
- `private_uta_post_v3_trade_cancel_batch(request)`
|
762
|
+
- `private_uta_post_v3_trade_cancel_symbol_order(request)`
|
763
|
+
- `private_uta_post_v3_trade_close_positions(request)`
|
764
|
+
- `private_uta_post_v3_user_create_sub(request)`
|
765
|
+
- `private_uta_post_v3_user_freeze_sub(request)`
|
766
|
+
- `private_uta_post_v3_user_create_sub_api(request)`
|
767
|
+
- `private_uta_post_v3_user_update_sub_api(request)`
|
768
|
+
- `private_uta_post_v3_user_delete_sub_api(request)`
|
709
769
|
|
710
770
|
### WS Unified
|
711
771
|
|
@@ -1,11 +1,11 @@
|
|
1
1
|
bitget/__init__.py,sha256=D5tG1_AjwXjMim3CPnCuWSheOXtq4vlSwVCS5ZG1bMQ,246
|
2
|
-
bitget/ccxt/__init__.py,sha256=
|
3
|
-
bitget/ccxt/bitget.py,sha256=
|
4
|
-
bitget/ccxt/abstract/bitget.py,sha256=
|
5
|
-
bitget/ccxt/async_support/__init__.py,sha256=
|
6
|
-
bitget/ccxt/async_support/bitget.py,sha256=
|
2
|
+
bitget/ccxt/__init__.py,sha256=hgVDJqLpTKNxE3iaw6yBiRaGsp0ZEPfRxyQCrAa2RZI,6048
|
3
|
+
bitget/ccxt/bitget.py,sha256=e6ssz20PaoHGhU9bL0fDs4q54HGB-_BkssQGelOOW_0,453846
|
4
|
+
bitget/ccxt/abstract/bitget.py,sha256=6q34nW4J1Vfvls4tExxZRJt0Ct28hCO0TQja_Mb_bmI,99978
|
5
|
+
bitget/ccxt/async_support/__init__.py,sha256=HyWrObQR8BU-Pwzizfa4bucMrs1zNZppiXFghgHcVh0,4781
|
6
|
+
bitget/ccxt/async_support/bitget.py,sha256=sPHtswNgPICInGQshCx2B1FxTmzf71mHVFQIxImZeew,455589
|
7
7
|
bitget/ccxt/async_support/base/__init__.py,sha256=aVYSsFi--b4InRs9zDN_wtCpj8odosAB726JdUHavrk,67
|
8
|
-
bitget/ccxt/async_support/base/exchange.py,sha256=
|
8
|
+
bitget/ccxt/async_support/base/exchange.py,sha256=3qo41BpgIc0nGYI3Fka9-_Wodr_xbzh47eW0jAuMsUQ,119161
|
9
9
|
bitget/ccxt/async_support/base/throttler.py,sha256=tvDVcdRUVYi8fZRlEcnqtgzcgB_KMUMRs5Pu8tuU-tU,1847
|
10
10
|
bitget/ccxt/async_support/base/ws/__init__.py,sha256=uockzpLuwntKGZbs5EOWFe-Zg-k6Cj7GhNJLc_RX0so,1791
|
11
11
|
bitget/ccxt/async_support/base/ws/aiohttp_client.py,sha256=Y5HxAVXyyYduj6b6SbbUZETlq3GrVMzrkW1r-TMgpb8,6329
|
@@ -18,10 +18,10 @@ bitget/ccxt/async_support/base/ws/order_book_side.py,sha256=GhnGUt78pJ-AYL_Dq9pr
|
|
18
18
|
bitget/ccxt/base/__init__.py,sha256=eTx1OE3HJjspFUQjGm6LBhaQiMKJnXjkdP-JUXknyQ0,1320
|
19
19
|
bitget/ccxt/base/decimal_to_precision.py,sha256=fgWRBzRTtsf3r2INyS4f7WHlzgjB5YM1ekiwqD21aac,6634
|
20
20
|
bitget/ccxt/base/errors.py,sha256=MvCrL_sAM3de616T6RE0PSxiF2xV6Qqz5b1y1ghidbk,4888
|
21
|
-
bitget/ccxt/base/exchange.py,sha256=
|
21
|
+
bitget/ccxt/base/exchange.py,sha256=b6TLBQicsWseX5icZF9BC89wQfUaqN5IPBSEcNOq1SM,328431
|
22
22
|
bitget/ccxt/base/precise.py,sha256=koce64Yrp6vFbGijJtUt-QQ6XhJgeGTCksZ871FPp_A,8886
|
23
23
|
bitget/ccxt/base/types.py,sha256=IbLO7Ni-plO36xlOdJQFqujSJBq0q9qll009ShZ0M_U,11468
|
24
|
-
bitget/ccxt/pro/__init__.py,sha256=
|
24
|
+
bitget/ccxt/pro/__init__.py,sha256=jW49X2taeHdRZiOAz5MXP9RO0Zk9HRyhOFaU0yOnW7w,4095
|
25
25
|
bitget/ccxt/pro/bitget.py,sha256=g8SkdhTze-idsChWiGIBi1twpiDfRlJyvnG2NL9VsR0,90372
|
26
26
|
bitget/ccxt/static_dependencies/README.md,sha256=3TCvhhn09_Cqf9BDDpao1V7EfKHDpQ6k9oWRsLFixpU,18
|
27
27
|
bitget/ccxt/static_dependencies/__init__.py,sha256=tzFje8cloqmiIE6kola3EaYC0SnD1izWnri69hzHsSw,168
|
@@ -282,6 +282,6 @@ bitget/ccxt/static_dependencies/toolz/curried/exceptions.py,sha256=gKFOHDIayAWnX
|
|
282
282
|
bitget/ccxt/static_dependencies/toolz/curried/operator.py,sha256=ML92mknkAwzBl2NCm-4werSUmJEtSHNY9NSzhseNM9s,525
|
283
283
|
bitget/ccxt/static_dependencies/typing_inspect/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
284
284
|
bitget/ccxt/static_dependencies/typing_inspect/typing_inspect.py,sha256=5gIWomLPfuDpgd3gX1GlnX0MuXM3VorR4j2W2qXORiQ,28269
|
285
|
-
bitget-0.0.
|
286
|
-
bitget-0.0.
|
287
|
-
bitget-0.0.
|
285
|
+
bitget-0.0.69.dist-info/METADATA,sha256=SqdTxkWTyl3ZAc5cKeyE1lWGoVZL7e2y5B6K7Yo0oRU,44111
|
286
|
+
bitget-0.0.69.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
287
|
+
bitget-0.0.69.dist-info/RECORD,,
|
File without changes
|