ccxt 2.9.16__py2.py3-none-any.whl → 3.0.1__py2.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.
Potentially problematic release.
This version of ccxt might be problematic. Click here for more details.
- ccxt/__init__.py +1 -1
- ccxt/async_support/__init__.py +1 -1
- ccxt/async_support/base/exchange.py +1 -1
- ccxt/async_support/woo.py +2 -1
- ccxt/base/exchange.py +1 -1
- ccxt/pro/__init__.py +1 -1
- ccxt/woo.py +2 -1
- {ccxt-2.9.16.dist-info → ccxt-3.0.1.dist-info}/METADATA +4 -4
- {ccxt-2.9.16.dist-info → ccxt-3.0.1.dist-info}/RECORD +11 -11
- {ccxt-2.9.16.dist-info → ccxt-3.0.1.dist-info}/WHEEL +0 -0
- {ccxt-2.9.16.dist-info → ccxt-3.0.1.dist-info}/top_level.txt +0 -0
ccxt/__init__.py
CHANGED
ccxt/async_support/__init__.py
CHANGED
ccxt/async_support/woo.py
CHANGED
@@ -1011,6 +1011,7 @@ class woo(Exchange):
|
|
1011
1011
|
status = self.safe_value(order, 'status')
|
1012
1012
|
side = self.safe_string_lower(order, 'side')
|
1013
1013
|
filled = self.safe_value(order, 'executed')
|
1014
|
+
average = self.safe_string(order, 'average_executed_price')
|
1014
1015
|
remaining = Precise.string_sub(cost, filled)
|
1015
1016
|
fee = self.safe_value(order, 'total_fee')
|
1016
1017
|
feeCurrency = self.safe_string(order, 'fee_asset')
|
@@ -1031,7 +1032,7 @@ class woo(Exchange):
|
|
1031
1032
|
'price': price,
|
1032
1033
|
'stopPrice': None,
|
1033
1034
|
'triggerPrice': None,
|
1034
|
-
'average':
|
1035
|
+
'average': average,
|
1035
1036
|
'amount': amount,
|
1036
1037
|
'filled': filled,
|
1037
1038
|
'remaining': remaining, # TO_DO
|
ccxt/base/exchange.py
CHANGED
ccxt/pro/__init__.py
CHANGED
ccxt/woo.py
CHANGED
@@ -1011,6 +1011,7 @@ class woo(Exchange):
|
|
1011
1011
|
status = self.safe_value(order, 'status')
|
1012
1012
|
side = self.safe_string_lower(order, 'side')
|
1013
1013
|
filled = self.safe_value(order, 'executed')
|
1014
|
+
average = self.safe_string(order, 'average_executed_price')
|
1014
1015
|
remaining = Precise.string_sub(cost, filled)
|
1015
1016
|
fee = self.safe_value(order, 'total_fee')
|
1016
1017
|
feeCurrency = self.safe_string(order, 'fee_asset')
|
@@ -1031,7 +1032,7 @@ class woo(Exchange):
|
|
1031
1032
|
'price': price,
|
1032
1033
|
'stopPrice': None,
|
1033
1034
|
'triggerPrice': None,
|
1034
|
-
'average':
|
1035
|
+
'average': average,
|
1035
1036
|
'amount': amount,
|
1036
1037
|
'filled': filled,
|
1037
1038
|
'remaining': remaining, # TO_DO
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: ccxt
|
3
|
-
Version:
|
3
|
+
Version: 3.0.1
|
4
4
|
Summary: A JavaScript / Python / PHP cryptocurrency trading library with support for 130+ exchanges
|
5
5
|
Home-page: https://ccxt.com
|
6
6
|
Author: Igor Kroitor
|
@@ -264,13 +264,13 @@ console.log(version, Object.keys(exchanges));
|
|
264
264
|
|
265
265
|
All-in-one browser bundle (dependencies included), served from a CDN of your choice:
|
266
266
|
|
267
|
-
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@
|
268
|
-
* unpkg: https://unpkg.com/ccxt@
|
267
|
+
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@3.0.1/dist/ccxt.browser.js
|
268
|
+
* unpkg: https://unpkg.com/ccxt@3.0.1/dist/ccxt.browser.js
|
269
269
|
|
270
270
|
CDNs are not updated in real-time and may have delays. Defaulting to the most recent version without specifying the version number is not recommended. Please, keep in mind that we are not responsible for the correct operation of those CDN servers.
|
271
271
|
|
272
272
|
```HTML
|
273
|
-
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@
|
273
|
+
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@3.0.1/dist/ccxt.browser.js"></script>
|
274
274
|
```
|
275
275
|
|
276
276
|
Creates a global `ccxt` object:
|
@@ -1,4 +1,4 @@
|
|
1
|
-
ccxt/__init__.py,sha256=
|
1
|
+
ccxt/__init__.py,sha256=1KBbHl3MSNtUQAYsS4Xf0mtdO1MMCkgB68DuRXt1Oqg,15912
|
2
2
|
ccxt/ace.py,sha256=MoHW0sWHs150zByYYCzqJN_Zqvxgi22PvXHWCuWymRQ,40996
|
3
3
|
ccxt/alpaca.py,sha256=TOPHfn8Dm1wq0X3cGOuFANZoj9PILRvIWnk7WK6bZjA,32886
|
4
4
|
ccxt/ascendex.py,sha256=SHAVfVFeo6s2diC6TeABA2mJT1Ec4qkaIBVd7ZkBlTE,125822
|
@@ -105,12 +105,12 @@ ccxt/upbit.py,sha256=utpsGhzTLl8sx9DWRTg7Hz7KMJZm6LFPK4ZD0H4_95E,72876
|
|
105
105
|
ccxt/wavesexchange.py,sha256=ygheoqSDOEntRYgy9m21zE9HEM5vdBmdiiam5PnAIl8,102978
|
106
106
|
ccxt/wazirx.py,sha256=0Ln1KwOqJkqKA2zAiCM4R5EsuUKcwUlYcEP3fYWmbvQ,34380
|
107
107
|
ccxt/whitebit.py,sha256=VrVX7FZHcJDqK0dAmOeQqGe5QP0J-XJG-MCgI0TkxAE,91446
|
108
|
-
ccxt/woo.py,sha256=
|
108
|
+
ccxt/woo.py,sha256=Gak8csYNbQOoVIMSb7cHYPF0MrYFAbBmISxBx4OLww4,92734
|
109
109
|
ccxt/yobit.py,sha256=Z1l67Uuf2LRMZPZq0-tW9iX4jshZ6prpF1V_kLLnqzU,50494
|
110
110
|
ccxt/zaif.py,sha256=R_c9pR46MONEqWMAz0CaxfReUFN2z5882jMnPAHCfYw,27658
|
111
111
|
ccxt/zb.py,sha256=S32lXnDIRG8gPU1aTMkMgqcegHR6Uj8hXYt6wfhRbdU,183189
|
112
112
|
ccxt/zonda.py,sha256=UHTa02_Rqgg8KueasxCY9m-Z2NheAJ9wrYivywY3NZU,72709
|
113
|
-
ccxt/async_support/__init__.py,sha256=
|
113
|
+
ccxt/async_support/__init__.py,sha256=hDrsbvOVUfpX-NKJm_QlbKVBtMNaz0mbnH3SZQ5pvTA,15745
|
114
114
|
ccxt/async_support/ace.py,sha256=j-Fw8HoVjYF43Jl07breAIZFH0UZhTahs8L_fu-NQ6M,41226
|
115
115
|
ccxt/async_support/alpaca.py,sha256=UNQWeypfIzmKYqSIR6mUoCWLz0R7B3o7c14_8Tfwxpg,33032
|
116
116
|
ccxt/async_support/ascendex.py,sha256=K7tpnOFpybjOOVnzQ2aldvUAomxJEIOzXeCPyg2KHXc,126436
|
@@ -217,13 +217,13 @@ ccxt/async_support/upbit.py,sha256=acGKLQFGEwmkzG_MmSmCfBLY4hETtgk6XYBFTTg5XhU,7
|
|
217
217
|
ccxt/async_support/wavesexchange.py,sha256=tXExy9u7oDBVzG2uEaZtNVpzrCkkbpMKDIeQeZzgSK4,103472
|
218
218
|
ccxt/async_support/wazirx.py,sha256=AHZOvg7LJoh5Xg-FmtZX3uLO5noEvJD5-JmweeTwc2A,34628
|
219
219
|
ccxt/async_support/whitebit.py,sha256=1n_jntZAtWAlaaZ_xBK_JTvAYImlS5VQbTrArpdbkc0,91898
|
220
|
-
ccxt/async_support/woo.py,sha256=
|
220
|
+
ccxt/async_support/woo.py,sha256=f6KELXfVpQ4aoBGHfbilCAfTLLYv0t62usTkLQxxFl0,93318
|
221
221
|
ccxt/async_support/yobit.py,sha256=acO9hnZAMY36ovZRrzqAHx-5fAZ98ty0VRz7ijzBPoQ,50778
|
222
222
|
ccxt/async_support/zaif.py,sha256=s-WeNeNgT3XJQWnjK5xBNrjgLKoGhYf1v0d4wQop0Lo,27840
|
223
223
|
ccxt/async_support/zb.py,sha256=zv27irXOPFXYbtwkuCwvzEe40udYImkMwYQPdd-5Lb0,183865
|
224
224
|
ccxt/async_support/zonda.py,sha256=MCTb-9GhLvXyRGxxrWHqD2SWxQSRFNGoCLIJpgE00co,72999
|
225
225
|
ccxt/async_support/base/__init__.py,sha256=aVYSsFi--b4InRs9zDN_wtCpj8odosAB726JdUHavrk,67
|
226
|
-
ccxt/async_support/base/exchange.py,sha256=
|
226
|
+
ccxt/async_support/base/exchange.py,sha256=liNKblHWcIPErxd8XfCqnD4msfsXCYWYDYnYemz3DgE,116899
|
227
227
|
ccxt/async_support/base/throttler.py,sha256=tvDVcdRUVYi8fZRlEcnqtgzcgB_KMUMRs5Pu8tuU-tU,1847
|
228
228
|
ccxt/async_support/base/ws/__init__.py,sha256=uockzpLuwntKGZbs5EOWFe-Zg-k6Cj7GhNJLc_RX0so,1791
|
229
229
|
ccxt/async_support/base/ws/aiohttp_client.py,sha256=VSko8JOYQt2oWmm9NCatEbgZ4deJz45JJuysWimfLZg,4987
|
@@ -237,9 +237,9 @@ ccxt/async_support/base/ws/order_book_side.py,sha256=GH-475Ni0mLOx7mUDnz4jjzaGkh
|
|
237
237
|
ccxt/base/__init__.py,sha256=eTx1OE3HJjspFUQjGm6LBhaQiMKJnXjkdP-JUXknyQ0,1320
|
238
238
|
ccxt/base/decimal_to_precision.py,sha256=FG3IBmZKwWPg7Kj2mgCX7txELUEhfgfmnxrbKwVVtok,6531
|
239
239
|
ccxt/base/errors.py,sha256=-LVeTNyXvu3QEgb-p-KzMpcBgzHlvFTwDzmZK7Gfc14,3401
|
240
|
-
ccxt/base/exchange.py,sha256=
|
240
|
+
ccxt/base/exchange.py,sha256=JnIVjikdYHaSVGgOjFk8eePe0umUV6Qcb4GiUZv6ArM,164338
|
241
241
|
ccxt/base/precise.py,sha256=_xfu54sV0vWNnOfGTKRFykeuWP8mn4K1m9lk1tcllX4,8565
|
242
|
-
ccxt/pro/__init__.py,sha256=
|
242
|
+
ccxt/pro/__init__.py,sha256=9IHPky2GOUC-d-zue8cOHJsqJ1mG4Hbs8ThQ6cdVEuc,5871
|
243
243
|
ccxt/pro/alpaca.py,sha256=AIClNMpehzzT2mDoqQGAjJYMQpcFJt3XkEDtOwc1igU,26372
|
244
244
|
ccxt/pro/ascendex.py,sha256=h-4xuj_2cCSFFaB5sXbnFB6Dg1V0ivC9cY3MORCXbeg,34257
|
245
245
|
ccxt/pro/bequant.py,sha256=qz8JjnpkAQY_CFiFSKGqrjjgZ2167_TBKjSJOb9NeDw,1081
|
@@ -325,7 +325,7 @@ ccxt/test/test_sync.py,sha256=omZA0xK_2nl58Gwoz65Oi4xRN4uLyuZ0AWZwf2Eqa9w,22795
|
|
325
325
|
ccxt/test/test_throttle.py,sha256=GvLQWtA4fAk_yJrxeisek-wAz7eJdHj0DDKR4_V1beg,3123
|
326
326
|
ccxt/test/test_trade.py,sha256=RRll096ZzaY51P7_IYuBdx2BpvytmrQmGt_bF5P6Gtg,3237
|
327
327
|
ccxt/test/test_transaction.py,sha256=BTbB4UHHXkrvYgwbrhh867nVRlevmIkIrz1W_odlQJI,1434
|
328
|
-
ccxt-
|
329
|
-
ccxt-
|
330
|
-
ccxt-
|
331
|
-
ccxt-
|
328
|
+
ccxt-3.0.1.dist-info/METADATA,sha256=lhxS6ywzahXhwx8rM1PMQQnNFBIs0xNlni7IhWrGrfU,111143
|
329
|
+
ccxt-3.0.1.dist-info/WHEEL,sha256=bb2Ot9scclHKMOLDEHY6B2sicWOgugjFKaJsT7vwMQo,110
|
330
|
+
ccxt-3.0.1.dist-info/top_level.txt,sha256=CkQDuCTDKNcImPV60t36G6MdYfxsAPNiSaEwifVoVMo,5
|
331
|
+
ccxt-3.0.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|