bitvavo-api-upgraded 1.17.2__py3-none-any.whl → 2.2.0__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.
- bitvavo_api_upgraded/__init__.py +2 -0
- bitvavo_api_upgraded/bitvavo.py +931 -92
- bitvavo_api_upgraded/dataframe_utils.py +175 -0
- bitvavo_api_upgraded/settings.py +81 -16
- bitvavo_api_upgraded/type_aliases.py +34 -0
- bitvavo_api_upgraded-2.2.0.dist-info/METADATA +806 -0
- bitvavo_api_upgraded-2.2.0.dist-info/RECORD +10 -0
- bitvavo_api_upgraded-2.2.0.dist-info/WHEEL +4 -0
- bitvavo_api_upgraded-1.17.2.dist-info/METADATA +0 -320
- bitvavo_api_upgraded-1.17.2.dist-info/RECORD +0 -10
- bitvavo_api_upgraded-1.17.2.dist-info/WHEEL +0 -4
- bitvavo_api_upgraded-1.17.2.dist-info/licenses/LICENSE.txt +0 -15
bitvavo_api_upgraded/__init__.py
CHANGED
@@ -1,8 +1,10 @@
|
|
1
1
|
from bitvavo_api_upgraded.bitvavo import Bitvavo
|
2
2
|
from bitvavo_api_upgraded.settings import BitvavoApiUpgradedSettings, BitvavoSettings
|
3
|
+
from bitvavo_api_upgraded.type_aliases import OutputFormat
|
3
4
|
|
4
5
|
__all__ = [
|
5
6
|
"Bitvavo",
|
6
7
|
"BitvavoApiUpgradedSettings",
|
7
8
|
"BitvavoSettings",
|
9
|
+
"OutputFormat",
|
8
10
|
]
|