snaptrade-python-sdk 11.0.145__py3-none-any.whl → 11.0.146__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.
- snaptrade_client/__init__.py +1 -1
- snaptrade_client/api_client.py +1 -1
- snaptrade_client/configuration.py +1 -1
- snaptrade_client/model/cryptocurrency_increment.py +25 -0
- snaptrade_client/model/cryptocurrency_increment.pyi +25 -0
- snaptrade_client/model/cryptocurrency_increment_nullable.py +50 -0
- snaptrade_client/model/cryptocurrency_increment_nullable.pyi +50 -0
- snaptrade_client/model/cryptocurrency_pair.py +17 -2
- snaptrade_client/model/cryptocurrency_pair.pyi +17 -2
- snaptrade_client/models/__init__.py +2 -0
- snaptrade_client/type/cryptocurrency_increment.py +19 -0
- snaptrade_client/type/cryptocurrency_increment_nullable.py +19 -0
- snaptrade_client/type/cryptocurrency_pair.py +3 -0
- {snaptrade_python_sdk-11.0.145.dist-info → snaptrade_python_sdk-11.0.146.dist-info}/METADATA +3 -3
- {snaptrade_python_sdk-11.0.145.dist-info → snaptrade_python_sdk-11.0.146.dist-info}/RECORD +17 -11
- {snaptrade_python_sdk-11.0.145.dist-info → snaptrade_python_sdk-11.0.146.dist-info}/LICENSE +0 -0
- {snaptrade_python_sdk-11.0.145.dist-info → snaptrade_python_sdk-11.0.146.dist-info}/WHEEL +0 -0
snaptrade_client/__init__.py
CHANGED
snaptrade_client/api_client.py
CHANGED
|
@@ -1155,7 +1155,7 @@ class ApiClient:
|
|
|
1155
1155
|
self.default_headers[header_name] = header_value
|
|
1156
1156
|
self.cookie = cookie
|
|
1157
1157
|
# Set default User-Agent.
|
|
1158
|
-
self.user_agent = 'Konfig/11.0.
|
|
1158
|
+
self.user_agent = 'Konfig/11.0.146/python'
|
|
1159
1159
|
|
|
1160
1160
|
def __enter__(self):
|
|
1161
1161
|
return self
|
|
@@ -438,7 +438,7 @@ conf = snaptrade_client.Configuration(
|
|
|
438
438
|
"OS: {env}\n"\
|
|
439
439
|
"Python Version: {pyversion}\n"\
|
|
440
440
|
"Version of the API: 1.0.0\n"\
|
|
441
|
-
"SDK Package Version: 11.0.
|
|
441
|
+
"SDK Package Version: 11.0.146".\
|
|
442
442
|
format(env=sys.platform, pyversion=sys.version)
|
|
443
443
|
|
|
444
444
|
def get_host_settings(self):
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
SnapTrade
|
|
5
|
+
|
|
6
|
+
Connect brokerage accounts to your app for live positions and trading
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: 1.0.0
|
|
9
|
+
Contact: api@snaptrade.com
|
|
10
|
+
Created by: https://snaptrade.com/
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
from datetime import date, datetime # noqa: F401
|
|
14
|
+
import decimal # noqa: F401
|
|
15
|
+
import functools # noqa: F401
|
|
16
|
+
import io # noqa: F401
|
|
17
|
+
import re # noqa: F401
|
|
18
|
+
import typing # noqa: F401
|
|
19
|
+
import typing_extensions # noqa: F401
|
|
20
|
+
import uuid # noqa: F401
|
|
21
|
+
|
|
22
|
+
import frozendict # noqa: F401
|
|
23
|
+
|
|
24
|
+
from snaptrade_client import schemas # noqa: F401
|
|
25
|
+
CryptocurrencyIncrement = schemas.StrSchema
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
SnapTrade
|
|
5
|
+
|
|
6
|
+
Connect brokerage accounts to your app for live positions and trading
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: 1.0.0
|
|
9
|
+
Contact: api@snaptrade.com
|
|
10
|
+
Created by: https://snaptrade.com/
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
from datetime import date, datetime # noqa: F401
|
|
14
|
+
import decimal # noqa: F401
|
|
15
|
+
import functools # noqa: F401
|
|
16
|
+
import io # noqa: F401
|
|
17
|
+
import re # noqa: F401
|
|
18
|
+
import typing # noqa: F401
|
|
19
|
+
import typing_extensions # noqa: F401
|
|
20
|
+
import uuid # noqa: F401
|
|
21
|
+
|
|
22
|
+
import frozendict # noqa: F401
|
|
23
|
+
|
|
24
|
+
from snaptrade_client import schemas # noqa: F401
|
|
25
|
+
CryptocurrencyIncrement = schemas.StrSchema
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
SnapTrade
|
|
5
|
+
|
|
6
|
+
Connect brokerage accounts to your app for live positions and trading
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: 1.0.0
|
|
9
|
+
Contact: api@snaptrade.com
|
|
10
|
+
Created by: https://snaptrade.com/
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
from datetime import date, datetime # noqa: F401
|
|
14
|
+
import decimal # noqa: F401
|
|
15
|
+
import functools # noqa: F401
|
|
16
|
+
import io # noqa: F401
|
|
17
|
+
import re # noqa: F401
|
|
18
|
+
import typing # noqa: F401
|
|
19
|
+
import typing_extensions # noqa: F401
|
|
20
|
+
import uuid # noqa: F401
|
|
21
|
+
|
|
22
|
+
import frozendict # noqa: F401
|
|
23
|
+
|
|
24
|
+
from snaptrade_client import schemas # noqa: F401
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
class CryptocurrencyIncrementNullable(
|
|
28
|
+
schemas.StrBase,
|
|
29
|
+
schemas.NoneBase,
|
|
30
|
+
schemas.Schema,
|
|
31
|
+
schemas.NoneStrMixin
|
|
32
|
+
):
|
|
33
|
+
"""
|
|
34
|
+
This class is auto generated by Konfig (https://konfigthis.com)
|
|
35
|
+
|
|
36
|
+
The precision or smallest price incremental step available for this cryptocurrency pair
|
|
37
|
+
|
|
38
|
+
"""
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
def __new__(
|
|
42
|
+
cls,
|
|
43
|
+
*args: typing.Union[None, str, ],
|
|
44
|
+
_configuration: typing.Optional[schemas.Configuration] = None,
|
|
45
|
+
) -> 'CryptocurrencyIncrementNullable':
|
|
46
|
+
return super().__new__(
|
|
47
|
+
cls,
|
|
48
|
+
*args,
|
|
49
|
+
_configuration=_configuration,
|
|
50
|
+
)
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
SnapTrade
|
|
5
|
+
|
|
6
|
+
Connect brokerage accounts to your app for live positions and trading
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: 1.0.0
|
|
9
|
+
Contact: api@snaptrade.com
|
|
10
|
+
Created by: https://snaptrade.com/
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
from datetime import date, datetime # noqa: F401
|
|
14
|
+
import decimal # noqa: F401
|
|
15
|
+
import functools # noqa: F401
|
|
16
|
+
import io # noqa: F401
|
|
17
|
+
import re # noqa: F401
|
|
18
|
+
import typing # noqa: F401
|
|
19
|
+
import typing_extensions # noqa: F401
|
|
20
|
+
import uuid # noqa: F401
|
|
21
|
+
|
|
22
|
+
import frozendict # noqa: F401
|
|
23
|
+
|
|
24
|
+
from snaptrade_client import schemas # noqa: F401
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
class CryptocurrencyIncrementNullable(
|
|
28
|
+
schemas.StrBase,
|
|
29
|
+
schemas.NoneBase,
|
|
30
|
+
schemas.Schema,
|
|
31
|
+
schemas.NoneStrMixin
|
|
32
|
+
):
|
|
33
|
+
"""
|
|
34
|
+
This class is auto generated by Konfig (https://konfigthis.com)
|
|
35
|
+
|
|
36
|
+
The precision or smallest price incremental step available for this cryptocurrency pair
|
|
37
|
+
|
|
38
|
+
"""
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
def __new__(
|
|
42
|
+
cls,
|
|
43
|
+
*args: typing.Union[None, str, ],
|
|
44
|
+
_configuration: typing.Optional[schemas.Configuration] = None,
|
|
45
|
+
) -> 'CryptocurrencyIncrementNullable':
|
|
46
|
+
return super().__new__(
|
|
47
|
+
cls,
|
|
48
|
+
*args,
|
|
49
|
+
_configuration=_configuration,
|
|
50
|
+
)
|
|
@@ -44,10 +44,15 @@ class CryptocurrencyPair(
|
|
|
44
44
|
base = schemas.StrSchema
|
|
45
45
|
quote = schemas.StrSchema
|
|
46
46
|
symbol = schemas.StrSchema
|
|
47
|
+
|
|
48
|
+
@staticmethod
|
|
49
|
+
def increment() -> typing.Type['CryptocurrencyIncrementNullable']:
|
|
50
|
+
return CryptocurrencyIncrementNullable
|
|
47
51
|
__annotations__ = {
|
|
48
52
|
"base": base,
|
|
49
53
|
"quote": quote,
|
|
50
54
|
"symbol": symbol,
|
|
55
|
+
"increment": increment,
|
|
51
56
|
}
|
|
52
57
|
additional_properties = schemas.AnyTypeSchema
|
|
53
58
|
|
|
@@ -63,10 +68,13 @@ class CryptocurrencyPair(
|
|
|
63
68
|
@typing.overload
|
|
64
69
|
def __getitem__(self, name: typing_extensions.Literal["symbol"]) -> MetaOapg.properties.symbol: ...
|
|
65
70
|
|
|
71
|
+
@typing.overload
|
|
72
|
+
def __getitem__(self, name: typing_extensions.Literal["increment"]) -> 'CryptocurrencyIncrementNullable': ...
|
|
73
|
+
|
|
66
74
|
@typing.overload
|
|
67
75
|
def __getitem__(self, name: str) -> MetaOapg.additional_properties: ...
|
|
68
76
|
|
|
69
|
-
def __getitem__(self, name: typing.Union[typing_extensions.Literal["quote"], typing_extensions.Literal["base"], typing_extensions.Literal["symbol"], str, ]):
|
|
77
|
+
def __getitem__(self, name: typing.Union[typing_extensions.Literal["quote"], typing_extensions.Literal["base"], typing_extensions.Literal["symbol"], typing_extensions.Literal["increment"], str, ]):
|
|
70
78
|
# dict_instance[name] accessor
|
|
71
79
|
return super().__getitem__(name)
|
|
72
80
|
|
|
@@ -79,10 +87,13 @@ class CryptocurrencyPair(
|
|
|
79
87
|
@typing.overload
|
|
80
88
|
def get_item_oapg(self, name: typing_extensions.Literal["symbol"]) -> typing.Union[MetaOapg.properties.symbol, schemas.Unset]: ...
|
|
81
89
|
|
|
90
|
+
@typing.overload
|
|
91
|
+
def get_item_oapg(self, name: typing_extensions.Literal["increment"]) -> typing.Union['CryptocurrencyIncrementNullable', schemas.Unset]: ...
|
|
92
|
+
|
|
82
93
|
@typing.overload
|
|
83
94
|
def get_item_oapg(self, name: str) -> typing.Union[MetaOapg.additional_properties, schemas.Unset]: ...
|
|
84
95
|
|
|
85
|
-
def get_item_oapg(self, name: typing.Union[typing_extensions.Literal["quote"], typing_extensions.Literal["base"], typing_extensions.Literal["symbol"], str, ]):
|
|
96
|
+
def get_item_oapg(self, name: typing.Union[typing_extensions.Literal["quote"], typing_extensions.Literal["base"], typing_extensions.Literal["symbol"], typing_extensions.Literal["increment"], str, ]):
|
|
86
97
|
return super().get_item_oapg(name)
|
|
87
98
|
|
|
88
99
|
def __new__(
|
|
@@ -91,6 +102,7 @@ class CryptocurrencyPair(
|
|
|
91
102
|
quote: typing.Union[MetaOapg.properties.quote, str, ],
|
|
92
103
|
base: typing.Union[MetaOapg.properties.base, str, ],
|
|
93
104
|
symbol: typing.Union[MetaOapg.properties.symbol, str, schemas.Unset] = schemas.unset,
|
|
105
|
+
increment: typing.Union['CryptocurrencyIncrementNullable', schemas.Unset] = schemas.unset,
|
|
94
106
|
_configuration: typing.Optional[schemas.Configuration] = None,
|
|
95
107
|
**kwargs: typing.Union[MetaOapg.additional_properties, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ],
|
|
96
108
|
) -> 'CryptocurrencyPair':
|
|
@@ -100,6 +112,9 @@ class CryptocurrencyPair(
|
|
|
100
112
|
quote=quote,
|
|
101
113
|
base=base,
|
|
102
114
|
symbol=symbol,
|
|
115
|
+
increment=increment,
|
|
103
116
|
_configuration=_configuration,
|
|
104
117
|
**kwargs,
|
|
105
118
|
)
|
|
119
|
+
|
|
120
|
+
from snaptrade_client.model.cryptocurrency_increment_nullable import CryptocurrencyIncrementNullable
|
|
@@ -44,10 +44,15 @@ class CryptocurrencyPair(
|
|
|
44
44
|
base = schemas.StrSchema
|
|
45
45
|
quote = schemas.StrSchema
|
|
46
46
|
symbol = schemas.StrSchema
|
|
47
|
+
|
|
48
|
+
@staticmethod
|
|
49
|
+
def increment() -> typing.Type['CryptocurrencyIncrementNullable']:
|
|
50
|
+
return CryptocurrencyIncrementNullable
|
|
47
51
|
__annotations__ = {
|
|
48
52
|
"base": base,
|
|
49
53
|
"quote": quote,
|
|
50
54
|
"symbol": symbol,
|
|
55
|
+
"increment": increment,
|
|
51
56
|
}
|
|
52
57
|
additional_properties = schemas.AnyTypeSchema
|
|
53
58
|
|
|
@@ -63,10 +68,13 @@ class CryptocurrencyPair(
|
|
|
63
68
|
@typing.overload
|
|
64
69
|
def __getitem__(self, name: typing_extensions.Literal["symbol"]) -> MetaOapg.properties.symbol: ...
|
|
65
70
|
|
|
71
|
+
@typing.overload
|
|
72
|
+
def __getitem__(self, name: typing_extensions.Literal["increment"]) -> 'CryptocurrencyIncrementNullable': ...
|
|
73
|
+
|
|
66
74
|
@typing.overload
|
|
67
75
|
def __getitem__(self, name: str) -> MetaOapg.additional_properties: ...
|
|
68
76
|
|
|
69
|
-
def __getitem__(self, name: typing.Union[typing_extensions.Literal["quote"], typing_extensions.Literal["base"], typing_extensions.Literal["symbol"], str, ]):
|
|
77
|
+
def __getitem__(self, name: typing.Union[typing_extensions.Literal["quote"], typing_extensions.Literal["base"], typing_extensions.Literal["symbol"], typing_extensions.Literal["increment"], str, ]):
|
|
70
78
|
# dict_instance[name] accessor
|
|
71
79
|
return super().__getitem__(name)
|
|
72
80
|
|
|
@@ -79,10 +87,13 @@ class CryptocurrencyPair(
|
|
|
79
87
|
@typing.overload
|
|
80
88
|
def get_item_oapg(self, name: typing_extensions.Literal["symbol"]) -> typing.Union[MetaOapg.properties.symbol, schemas.Unset]: ...
|
|
81
89
|
|
|
90
|
+
@typing.overload
|
|
91
|
+
def get_item_oapg(self, name: typing_extensions.Literal["increment"]) -> typing.Union['CryptocurrencyIncrementNullable', schemas.Unset]: ...
|
|
92
|
+
|
|
82
93
|
@typing.overload
|
|
83
94
|
def get_item_oapg(self, name: str) -> typing.Union[MetaOapg.additional_properties, schemas.Unset]: ...
|
|
84
95
|
|
|
85
|
-
def get_item_oapg(self, name: typing.Union[typing_extensions.Literal["quote"], typing_extensions.Literal["base"], typing_extensions.Literal["symbol"], str, ]):
|
|
96
|
+
def get_item_oapg(self, name: typing.Union[typing_extensions.Literal["quote"], typing_extensions.Literal["base"], typing_extensions.Literal["symbol"], typing_extensions.Literal["increment"], str, ]):
|
|
86
97
|
return super().get_item_oapg(name)
|
|
87
98
|
|
|
88
99
|
def __new__(
|
|
@@ -91,6 +102,7 @@ class CryptocurrencyPair(
|
|
|
91
102
|
quote: typing.Union[MetaOapg.properties.quote, str, ],
|
|
92
103
|
base: typing.Union[MetaOapg.properties.base, str, ],
|
|
93
104
|
symbol: typing.Union[MetaOapg.properties.symbol, str, schemas.Unset] = schemas.unset,
|
|
105
|
+
increment: typing.Union['CryptocurrencyIncrementNullable', schemas.Unset] = schemas.unset,
|
|
94
106
|
_configuration: typing.Optional[schemas.Configuration] = None,
|
|
95
107
|
**kwargs: typing.Union[MetaOapg.additional_properties, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ],
|
|
96
108
|
) -> 'CryptocurrencyPair':
|
|
@@ -100,6 +112,9 @@ class CryptocurrencyPair(
|
|
|
100
112
|
quote=quote,
|
|
101
113
|
base=base,
|
|
102
114
|
symbol=symbol,
|
|
115
|
+
increment=increment,
|
|
103
116
|
_configuration=_configuration,
|
|
104
117
|
**kwargs,
|
|
105
118
|
)
|
|
119
|
+
|
|
120
|
+
from snaptrade_client.model.cryptocurrency_increment_nullable import CryptocurrencyIncrementNullable
|
|
@@ -61,6 +61,8 @@ from snaptrade_client.model.crypto_order_preview import CryptoOrderPreview
|
|
|
61
61
|
from snaptrade_client.model.crypto_order_preview_estimated_fee import CryptoOrderPreviewEstimatedFee
|
|
62
62
|
from snaptrade_client.model.crypto_trading_instrument import CryptoTradingInstrument
|
|
63
63
|
from snaptrade_client.model.cryptocurrency_base_symbol import CryptocurrencyBaseSymbol
|
|
64
|
+
from snaptrade_client.model.cryptocurrency_increment import CryptocurrencyIncrement
|
|
65
|
+
from snaptrade_client.model.cryptocurrency_increment_nullable import CryptocurrencyIncrementNullable
|
|
64
66
|
from snaptrade_client.model.cryptocurrency_pair import CryptocurrencyPair
|
|
65
67
|
from snaptrade_client.model.cryptocurrency_pair_quote import CryptocurrencyPairQuote
|
|
66
68
|
from snaptrade_client.model.cryptocurrency_pair_symbol import CryptocurrencyPairSymbol
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
SnapTrade
|
|
5
|
+
|
|
6
|
+
Connect brokerage accounts to your app for live positions and trading
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: 1.0.0
|
|
9
|
+
Contact: api@snaptrade.com
|
|
10
|
+
Created by: https://snaptrade.com/
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
from datetime import datetime, date
|
|
14
|
+
import typing
|
|
15
|
+
from enum import Enum
|
|
16
|
+
from typing_extensions import TypedDict, Literal, TYPE_CHECKING
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
CryptocurrencyIncrement = str
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
SnapTrade
|
|
5
|
+
|
|
6
|
+
Connect brokerage accounts to your app for live positions and trading
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: 1.0.0
|
|
9
|
+
Contact: api@snaptrade.com
|
|
10
|
+
Created by: https://snaptrade.com/
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
from datetime import datetime, date
|
|
14
|
+
import typing
|
|
15
|
+
from enum import Enum
|
|
16
|
+
from typing_extensions import TypedDict, Literal, TYPE_CHECKING
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
CryptocurrencyIncrementNullable = str
|
|
@@ -15,6 +15,7 @@ import typing
|
|
|
15
15
|
from enum import Enum
|
|
16
16
|
from typing_extensions import TypedDict, Literal, TYPE_CHECKING
|
|
17
17
|
|
|
18
|
+
from snaptrade_client.type.cryptocurrency_increment_nullable import CryptocurrencyIncrementNullable
|
|
18
19
|
|
|
19
20
|
class RequiredCryptocurrencyPair(TypedDict):
|
|
20
21
|
# The base currency of a pair (e.g., \"BTC\" in BTC/USD). Either fiat or cryptocurrency symbol, for fiat use ISO-4217 codes.
|
|
@@ -28,5 +29,7 @@ class OptionalCryptocurrencyPair(TypedDict, total=False):
|
|
|
28
29
|
# Cryptocurrency pair instrument symbol
|
|
29
30
|
symbol: str
|
|
30
31
|
|
|
32
|
+
increment: CryptocurrencyIncrementNullable
|
|
33
|
+
|
|
31
34
|
class CryptocurrencyPair(RequiredCryptocurrencyPair, OptionalCryptocurrencyPair):
|
|
32
35
|
pass
|
{snaptrade_python_sdk-11.0.145.dist-info → snaptrade_python_sdk-11.0.146.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: snaptrade-python-sdk
|
|
3
|
-
Version: 11.0.
|
|
3
|
+
Version: 11.0.146
|
|
4
4
|
Summary: Client for SnapTrade
|
|
5
5
|
License: MIT
|
|
6
6
|
Author: SnapTrade
|
|
@@ -30,7 +30,7 @@ Description-Content-Type: text/markdown
|
|
|
30
30
|
Connect brokerage accounts to your app for live positions and trading
|
|
31
31
|
|
|
32
32
|
|
|
33
|
-
[](https://pypi.org/project/snaptrade-python-sdk/11.0.146)
|
|
34
34
|
[](https://github.com/passiv/snaptrade-sdks/tree/master/sdks/python#readme)
|
|
35
35
|
[](https://snaptrade.com/)
|
|
36
36
|
|
|
@@ -111,7 +111,7 @@ Python >=3.8
|
|
|
111
111
|
## Installation<a id="installation"></a>
|
|
112
112
|
|
|
113
113
|
```sh
|
|
114
|
-
pip install snaptrade-python-sdk==11.0.
|
|
114
|
+
pip install snaptrade-python-sdk==11.0.146
|
|
115
115
|
```
|
|
116
116
|
|
|
117
117
|
## Getting Started<a id="getting-started"></a>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
snaptrade_client/__init__.py,sha256=
|
|
2
|
-
snaptrade_client/api_client.py,sha256=
|
|
1
|
+
snaptrade_client/__init__.py,sha256=3b2o-ZWtXtCIxOi9ONVhLrFiM6QYoimJrSEbtECtplU,820
|
|
2
|
+
snaptrade_client/api_client.py,sha256=56ieoGWskwQdlU2OHGZH4I-1qFO32HxMHlovEsNKCTo,73975
|
|
3
3
|
snaptrade_client/api_response.py,sha256=mZn18p_TNr6OY0HXTZW5InL9iXfqsJWstYGeGD-euPA,663
|
|
4
4
|
snaptrade_client/apis/__init__.py,sha256=RTosXhMn41tMsKPUjIy-VK-_efOWzhkKiuGggJ3A6E0,214
|
|
5
5
|
snaptrade_client/apis/path_to_api.py,sha256=U2W6P3ea6gIUTB16bJ16y4fIBuaOF_TqUyGmuFF6STM,12851
|
|
@@ -81,7 +81,7 @@ snaptrade_client/apis/tags/transactions_and_reporting_api_generated.py,sha256=Tw
|
|
|
81
81
|
snaptrade_client/client.py,sha256=p-1j4DS7DHuwClS8Kh4VHbTFB7jf-DMpkrh5PcCmYTg,2308
|
|
82
82
|
snaptrade_client/client.pyi,sha256=p-1j4DS7DHuwClS8Kh4VHbTFB7jf-DMpkrh5PcCmYTg,2308
|
|
83
83
|
snaptrade_client/client_custom.py,sha256=Jx9ulCzelMFlESjzVFQSjBlYcH4dWxSJJWZDMPLyetM,745
|
|
84
|
-
snaptrade_client/configuration.py,sha256=
|
|
84
|
+
snaptrade_client/configuration.py,sha256=MUFrHoUBqAktEQyWqVdHh_hXdoYOqf5dN260xQ1iJok,19262
|
|
85
85
|
snaptrade_client/exceptions.py,sha256=X0apI_sgQpGpa-qIqPUClReCdHAxeSuA6GW0YH_RsWg,7771
|
|
86
86
|
snaptrade_client/exceptions_base.py,sha256=LAQkaC5C61-SdBLfyMjb0K7AYJkWVuLmg2uCvHa71FM,2274
|
|
87
87
|
snaptrade_client/model/__init__.py,sha256=ayi2MIzcf0eAIsY13ToiNplV9tW-pMBFrC0I9yckGM8,350
|
|
@@ -185,8 +185,12 @@ snaptrade_client/model/crypto_trading_instrument.py,sha256=U87R7vwtmRvhIcaT_0phD
|
|
|
185
185
|
snaptrade_client/model/crypto_trading_instrument.pyi,sha256=MUwXwNl7C7Lm79sJtQXxsFBeLw7rC2K8tmpW0VLL-yk,3432
|
|
186
186
|
snaptrade_client/model/cryptocurrency_base_symbol.py,sha256=TopWpvjdmfDsUor1LG6HqvYkE9ilSdBgDEjOFVMH0xU,614
|
|
187
187
|
snaptrade_client/model/cryptocurrency_base_symbol.pyi,sha256=TopWpvjdmfDsUor1LG6HqvYkE9ilSdBgDEjOFVMH0xU,614
|
|
188
|
-
snaptrade_client/model/
|
|
189
|
-
snaptrade_client/model/
|
|
188
|
+
snaptrade_client/model/cryptocurrency_increment.py,sha256=wGnL2-xAB8LShx9aixMD_G_1oM1J4HJBtHRH2i4vGhE,613
|
|
189
|
+
snaptrade_client/model/cryptocurrency_increment.pyi,sha256=wGnL2-xAB8LShx9aixMD_G_1oM1J4HJBtHRH2i4vGhE,613
|
|
190
|
+
snaptrade_client/model/cryptocurrency_increment_nullable.py,sha256=vmRjLNrjSa0geXJveiU7U8SjWC6zoBlWPLuk1QBAgss,1189
|
|
191
|
+
snaptrade_client/model/cryptocurrency_increment_nullable.pyi,sha256=vmRjLNrjSa0geXJveiU7U8SjWC6zoBlWPLuk1QBAgss,1189
|
|
192
|
+
snaptrade_client/model/cryptocurrency_pair.py,sha256=td8VMkf8k_hvaWec2A_8rFSDTRmUQRhndfE0tsEVSPA,4440
|
|
193
|
+
snaptrade_client/model/cryptocurrency_pair.pyi,sha256=td8VMkf8k_hvaWec2A_8rFSDTRmUQRhndfE0tsEVSPA,4440
|
|
190
194
|
snaptrade_client/model/cryptocurrency_pair_quote.py,sha256=w-3GC7sbzV_NSd64SD1pxhjGjdvD7ik-zFbtDJDTodE,4103
|
|
191
195
|
snaptrade_client/model/cryptocurrency_pair_quote.pyi,sha256=w-3GC7sbzV_NSd64SD1pxhjGjdvD7ik-zFbtDJDTodE,4103
|
|
192
196
|
snaptrade_client/model/cryptocurrency_pair_symbol.py,sha256=W4o6DVQ6DUsCt5VMUBQQvH5wgtiPjq5_XdU3nkxhVTc,614
|
|
@@ -441,7 +445,7 @@ snaptrade_client/model/user_secret.py,sha256=7xf__S566WtTq7VthmdVtrCBIfgpnYWYqE9
|
|
|
441
445
|
snaptrade_client/model/user_secret.pyi,sha256=7xf__S566WtTq7VthmdVtrCBIfgpnYWYqE9cmz9vBMc,600
|
|
442
446
|
snaptrade_client/model/validated_trade_body.py,sha256=NkTel1ulgSjBd6K7vur6puEbfrg3u1vdmtUKArOu8ws,3085
|
|
443
447
|
snaptrade_client/model/validated_trade_body.pyi,sha256=NkTel1ulgSjBd6K7vur6puEbfrg3u1vdmtUKArOu8ws,3085
|
|
444
|
-
snaptrade_client/models/__init__.py,sha256=
|
|
448
|
+
snaptrade_client/models/__init__.py,sha256=Ubf9nxMK6oMHr7ZCH3pFq0V3QSt2lExB6so0M6Aushg,14184
|
|
445
449
|
snaptrade_client/operation_parameter_map.py,sha256=8DEC0BfPisWdf9-TncvKm8bxar5Ze-J2rIYUc5hqk1Q,19073
|
|
446
450
|
snaptrade_client/paths/__init__.py,sha256=O5AyZd3nQk5HAoQSp2mwdtnBGBmnOhYS6m3JBRk244c,3672
|
|
447
451
|
snaptrade_client/paths/accounts/__init__.py,sha256=_Bqi6B13A-kgd0AOpqmcE1vTxJDfoz-r3Hwf-AmwW6A,307
|
|
@@ -667,7 +671,9 @@ snaptrade_client/type/crypto_order_preview.py,sha256=cZ_LgtZlHCYiaL9nSSliV4SE0rF
|
|
|
667
671
|
snaptrade_client/type/crypto_order_preview_estimated_fee.py,sha256=pqHTKg-dIhH24BCnUY4fFdERJIcWJEGpD5OAXHntEqk,796
|
|
668
672
|
snaptrade_client/type/crypto_trading_instrument.py,sha256=D8dOWGdyqZAluHgYFfMtl3ru8jl3-2n1IKcNL7E5MYQ,705
|
|
669
673
|
snaptrade_client/type/cryptocurrency_base_symbol.py,sha256=zKNL1cf3yes--pBAvvCu-C5IfXsk_eQDIzf8zSTNx1U,402
|
|
670
|
-
snaptrade_client/type/
|
|
674
|
+
snaptrade_client/type/cryptocurrency_increment.py,sha256=GTLNaryU-6UjC99pEHY2zdUqvxXNm0jjr4QkX60vzuU,401
|
|
675
|
+
snaptrade_client/type/cryptocurrency_increment_nullable.py,sha256=VSsjyCdnnIuERoWvKbJ1mMku8k99GJt98VSdij7h2gw,409
|
|
676
|
+
snaptrade_client/type/cryptocurrency_pair.py,sha256=Nq6-9X4bvWcFK29YhYdFZuqvCQifToo_gx2yC6dj76U,1067
|
|
671
677
|
snaptrade_client/type/cryptocurrency_pair_quote.py,sha256=bwBv2jvYU6iQGZ13wv_X7EmWzKxnHvIeDv8PS1-_3Cw,825
|
|
672
678
|
snaptrade_client/type/cryptocurrency_pair_symbol.py,sha256=Lx5tTAQhMofnWzaKKYhwS_9b5fy2JgYUwWRxyH_hOak,402
|
|
673
679
|
snaptrade_client/type/cryptocurrency_quote_symbol.py,sha256=RizZlNTvNhniC32Jh8CHjVH8n-ekRjqpLn5LwVFyeVo,403
|
|
@@ -797,7 +803,7 @@ snaptrade_client/type/user_secret.py,sha256=pKCVhqf1rROHwa6tvoyA5OAKXCBAmNDvIQCf
|
|
|
797
803
|
snaptrade_client/type/validated_trade_body.py,sha256=ZIPBQWii_a-9zHaBCJ6bQtmL1_I7AG0zwuvkY-ZQ6R4,890
|
|
798
804
|
snaptrade_client/type_util.py,sha256=JIrMYgJzd4IJ8Ne2vqcahlPA9dVmphL9sn8gwccCB4Y,563
|
|
799
805
|
snaptrade_client/validation_metadata.py,sha256=VTN5y-NudHXok1X468J4PnGze_tGEAcs1v3gsXmcrb0,3172
|
|
800
|
-
snaptrade_python_sdk-11.0.
|
|
801
|
-
snaptrade_python_sdk-11.0.
|
|
802
|
-
snaptrade_python_sdk-11.0.
|
|
803
|
-
snaptrade_python_sdk-11.0.
|
|
806
|
+
snaptrade_python_sdk-11.0.146.dist-info/LICENSE,sha256=W_1kcxEzOnZXIYJ1GVUipbmUu6dNLt-Pc-OI55h3k-A,1081
|
|
807
|
+
snaptrade_python_sdk-11.0.146.dist-info/METADATA,sha256=HQXLnhxHzdZhpg2qwMicsUujrd3mMr3HACQh0Z0GO_o,100860
|
|
808
|
+
snaptrade_python_sdk-11.0.146.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
|
809
|
+
snaptrade_python_sdk-11.0.146.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|