bitget 0.0.79__py3-none-any.whl → 0.0.80__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 +6 -0
- bitget/ccxt/async_support/__init__.py +1 -1
- bitget/ccxt/async_support/base/exchange.py +1 -1
- bitget/ccxt/async_support/bitget.py +2018 -557
- bitget/ccxt/base/errors.py +0 -6
- bitget/ccxt/base/exchange.py +1 -1
- bitget/ccxt/bitget.py +2018 -557
- bitget/ccxt/pro/__init__.py +1 -1
- bitget/ccxt/pro/bitget.py +3 -3
- {bitget-0.0.79.dist-info → bitget-0.0.80.dist-info}/METADATA +11 -1
- {bitget-0.0.79.dist-info → bitget-0.0.80.dist-info}/RECORD +13 -13
- {bitget-0.0.79.dist-info → bitget-0.0.80.dist-info}/WHEEL +0 -0
bitget/ccxt/base/errors.py
CHANGED
@@ -1,9 +1,3 @@
|
|
1
|
-
# ----------------------------------------------------------------------------
|
2
|
-
|
3
|
-
# PLEASE DO NOT EDIT THIS FILE, IT IS GENERATED AND WILL BE OVERWRITTEN:
|
4
|
-
# https://github.com/ccxt/ccxt/blob/master/CONTRIBUTING.md#how-to-contribute-code
|
5
|
-
# EDIT THE CORRESPONDENT .ts FILE INSTEAD
|
6
|
-
|
7
1
|
error_hierarchy = {
|
8
2
|
'BaseError': {
|
9
3
|
'ExchangeError': {
|