snaptrade-python-sdk 11.0.119__py3-none-any.whl → 11.0.121__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/apis/path_to_api.py +9 -9
- snaptrade_client/configuration.py +1 -1
- snaptrade_client/paths/__init__.py +3 -3
- snaptrade_client/paths/accounts_account_id_trading_replace/post.py +2 -2
- snaptrade_client/paths/accounts_account_id_trading_replace/post.pyi +2 -2
- snaptrade_client/type/manual_trade_form_with_options.py +1 -1
- {snaptrade_python_sdk-11.0.119.dist-info → snaptrade_python_sdk-11.0.121.dist-info}/METADATA +5 -5
- {snaptrade_python_sdk-11.0.119.dist-info → snaptrade_python_sdk-11.0.121.dist-info}/RECORD +12 -12
- {snaptrade_python_sdk-11.0.119.dist-info → snaptrade_python_sdk-11.0.121.dist-info}/LICENSE +0 -0
- {snaptrade_python_sdk-11.0.119.dist-info → snaptrade_python_sdk-11.0.121.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.121/python'
|
|
1159
1159
|
|
|
1160
1160
|
def __enter__(self):
|
|
1161
1161
|
return self
|
|
@@ -39,10 +39,10 @@ from snaptrade_client.apis.paths.accounts_account_id_trading_bracket import Acco
|
|
|
39
39
|
from snaptrade_client.apis.paths.accounts_account_id_trading_options import AccountsAccountIdTradingOptions
|
|
40
40
|
from snaptrade_client.apis.paths.accounts_account_id_trading_instruments_cryptocurrency_pairs import AccountsAccountIdTradingInstrumentsCryptocurrencyPairs
|
|
41
41
|
from snaptrade_client.apis.paths.accounts_account_id_trading_instruments_cryptocurrency_pairs_instrument_symbol_quote import AccountsAccountIdTradingInstrumentsCryptocurrencyPairsInstrumentSymbolQuote
|
|
42
|
-
from snaptrade_client.apis.paths.accounts_account_id_trading_replace import AccountsAccountIdTradingReplace
|
|
43
|
-
from snaptrade_client.apis.paths.accounts_account_id_trading_cancel import AccountsAccountIdTradingCancel
|
|
44
|
-
from snaptrade_client.apis.paths.accounts_account_id_trading_crypto import AccountsAccountIdTradingCrypto
|
|
45
42
|
from snaptrade_client.apis.paths.accounts_account_id_trading_crypto_preview import AccountsAccountIdTradingCryptoPreview
|
|
43
|
+
from snaptrade_client.apis.paths.accounts_account_id_trading_crypto import AccountsAccountIdTradingCrypto
|
|
44
|
+
from snaptrade_client.apis.paths.accounts_account_id_trading_cancel import AccountsAccountIdTradingCancel
|
|
45
|
+
from snaptrade_client.apis.paths.accounts_account_id_trading_replace import AccountsAccountIdTradingReplace
|
|
46
46
|
from snaptrade_client.apis.paths.snap_trade_partners import SnapTradePartners
|
|
47
47
|
from snaptrade_client.apis.paths.accounts_account_id_symbols import AccountsAccountIdSymbols
|
|
48
48
|
from snaptrade_client.apis.paths.brokerages import Brokerages
|
|
@@ -97,10 +97,10 @@ PathToApi = typing_extensions.TypedDict(
|
|
|
97
97
|
PathValues.ACCOUNTS_ACCOUNT_ID_TRADING_OPTIONS: AccountsAccountIdTradingOptions,
|
|
98
98
|
PathValues.ACCOUNTS_ACCOUNT_ID_TRADING_INSTRUMENTS_CRYPTOCURRENCY_PAIRS: AccountsAccountIdTradingInstrumentsCryptocurrencyPairs,
|
|
99
99
|
PathValues.ACCOUNTS_ACCOUNT_ID_TRADING_INSTRUMENTS_CRYPTOCURRENCY_PAIRS_INSTRUMENT_SYMBOL_QUOTE: AccountsAccountIdTradingInstrumentsCryptocurrencyPairsInstrumentSymbolQuote,
|
|
100
|
-
PathValues.ACCOUNTS_ACCOUNT_ID_TRADING_REPLACE: AccountsAccountIdTradingReplace,
|
|
101
|
-
PathValues.ACCOUNTS_ACCOUNT_ID_TRADING_CANCEL: AccountsAccountIdTradingCancel,
|
|
102
|
-
PathValues.ACCOUNTS_ACCOUNT_ID_TRADING_CRYPTO: AccountsAccountIdTradingCrypto,
|
|
103
100
|
PathValues.ACCOUNTS_ACCOUNT_ID_TRADING_CRYPTO_PREVIEW: AccountsAccountIdTradingCryptoPreview,
|
|
101
|
+
PathValues.ACCOUNTS_ACCOUNT_ID_TRADING_CRYPTO: AccountsAccountIdTradingCrypto,
|
|
102
|
+
PathValues.ACCOUNTS_ACCOUNT_ID_TRADING_CANCEL: AccountsAccountIdTradingCancel,
|
|
103
|
+
PathValues.ACCOUNTS_ACCOUNT_ID_TRADING_REPLACE: AccountsAccountIdTradingReplace,
|
|
104
104
|
PathValues.SNAP_TRADE_PARTNERS: SnapTradePartners,
|
|
105
105
|
PathValues.ACCOUNTS_ACCOUNT_ID_SYMBOLS: AccountsAccountIdSymbols,
|
|
106
106
|
PathValues.BROKERAGES: Brokerages,
|
|
@@ -156,10 +156,10 @@ path_to_api = PathToApi(
|
|
|
156
156
|
PathValues.ACCOUNTS_ACCOUNT_ID_TRADING_OPTIONS: AccountsAccountIdTradingOptions,
|
|
157
157
|
PathValues.ACCOUNTS_ACCOUNT_ID_TRADING_INSTRUMENTS_CRYPTOCURRENCY_PAIRS: AccountsAccountIdTradingInstrumentsCryptocurrencyPairs,
|
|
158
158
|
PathValues.ACCOUNTS_ACCOUNT_ID_TRADING_INSTRUMENTS_CRYPTOCURRENCY_PAIRS_INSTRUMENT_SYMBOL_QUOTE: AccountsAccountIdTradingInstrumentsCryptocurrencyPairsInstrumentSymbolQuote,
|
|
159
|
-
PathValues.ACCOUNTS_ACCOUNT_ID_TRADING_REPLACE: AccountsAccountIdTradingReplace,
|
|
160
|
-
PathValues.ACCOUNTS_ACCOUNT_ID_TRADING_CANCEL: AccountsAccountIdTradingCancel,
|
|
161
|
-
PathValues.ACCOUNTS_ACCOUNT_ID_TRADING_CRYPTO: AccountsAccountIdTradingCrypto,
|
|
162
159
|
PathValues.ACCOUNTS_ACCOUNT_ID_TRADING_CRYPTO_PREVIEW: AccountsAccountIdTradingCryptoPreview,
|
|
160
|
+
PathValues.ACCOUNTS_ACCOUNT_ID_TRADING_CRYPTO: AccountsAccountIdTradingCrypto,
|
|
161
|
+
PathValues.ACCOUNTS_ACCOUNT_ID_TRADING_CANCEL: AccountsAccountIdTradingCancel,
|
|
162
|
+
PathValues.ACCOUNTS_ACCOUNT_ID_TRADING_REPLACE: AccountsAccountIdTradingReplace,
|
|
163
163
|
PathValues.SNAP_TRADE_PARTNERS: SnapTradePartners,
|
|
164
164
|
PathValues.ACCOUNTS_ACCOUNT_ID_SYMBOLS: AccountsAccountIdSymbols,
|
|
165
165
|
PathValues.BROKERAGES: Brokerages,
|
|
@@ -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.121".\
|
|
442
442
|
format(env=sys.platform, pyversion=sys.version)
|
|
443
443
|
|
|
444
444
|
def get_host_settings(self):
|
|
@@ -44,10 +44,10 @@ class PathValues(str, enum.Enum):
|
|
|
44
44
|
ACCOUNTS_ACCOUNT_ID_TRADING_OPTIONS = "/accounts/{accountId}/trading/options"
|
|
45
45
|
ACCOUNTS_ACCOUNT_ID_TRADING_INSTRUMENTS_CRYPTOCURRENCY_PAIRS = "/accounts/{accountId}/trading/instruments/cryptocurrencyPairs"
|
|
46
46
|
ACCOUNTS_ACCOUNT_ID_TRADING_INSTRUMENTS_CRYPTOCURRENCY_PAIRS_INSTRUMENT_SYMBOL_QUOTE = "/accounts/{accountId}/trading/instruments/cryptocurrencyPairs/{instrumentSymbol}/quote"
|
|
47
|
-
ACCOUNTS_ACCOUNT_ID_TRADING_REPLACE = "/accounts/{accountId}/trading/replace"
|
|
48
|
-
ACCOUNTS_ACCOUNT_ID_TRADING_CANCEL = "/accounts/{accountId}/trading/cancel"
|
|
49
|
-
ACCOUNTS_ACCOUNT_ID_TRADING_CRYPTO = "/accounts/{accountId}/trading/crypto"
|
|
50
47
|
ACCOUNTS_ACCOUNT_ID_TRADING_CRYPTO_PREVIEW = "/accounts/{accountId}/trading/crypto/preview"
|
|
48
|
+
ACCOUNTS_ACCOUNT_ID_TRADING_CRYPTO = "/accounts/{accountId}/trading/crypto"
|
|
49
|
+
ACCOUNTS_ACCOUNT_ID_TRADING_CANCEL = "/accounts/{accountId}/trading/cancel"
|
|
50
|
+
ACCOUNTS_ACCOUNT_ID_TRADING_REPLACE = "/accounts/{accountId}/trading/replace"
|
|
51
51
|
SNAP_TRADE_PARTNERS = "/snapTrade/partners"
|
|
52
52
|
ACCOUNTS_ACCOUNT_ID_SYMBOLS = "/accounts/{accountId}/symbols"
|
|
53
53
|
BROKERAGES = "/brokerages"
|
|
@@ -287,7 +287,7 @@ class BaseApi(api_client.Api):
|
|
|
287
287
|
AsyncGeneratorResponse,
|
|
288
288
|
]:
|
|
289
289
|
"""
|
|
290
|
-
Replace
|
|
290
|
+
Replace order
|
|
291
291
|
:param skip_deserialization: If true then api_response.response will be set but
|
|
292
292
|
api_response.body and api_response.headers will not be deserialized into schema
|
|
293
293
|
class instances
|
|
@@ -433,7 +433,7 @@ class BaseApi(api_client.Api):
|
|
|
433
433
|
api_client.ApiResponseWithoutDeserialization,
|
|
434
434
|
]:
|
|
435
435
|
"""
|
|
436
|
-
Replace
|
|
436
|
+
Replace order
|
|
437
437
|
:param skip_deserialization: If true then api_response.response will be set but
|
|
438
438
|
api_response.body and api_response.headers will not be deserialized into schema
|
|
439
439
|
class instances
|
|
@@ -274,7 +274,7 @@ class BaseApi(api_client.Api):
|
|
|
274
274
|
AsyncGeneratorResponse,
|
|
275
275
|
]:
|
|
276
276
|
"""
|
|
277
|
-
Replace
|
|
277
|
+
Replace order
|
|
278
278
|
:param skip_deserialization: If true then api_response.response will be set but
|
|
279
279
|
api_response.body and api_response.headers will not be deserialized into schema
|
|
280
280
|
class instances
|
|
@@ -420,7 +420,7 @@ class BaseApi(api_client.Api):
|
|
|
420
420
|
api_client.ApiResponseWithoutDeserialization,
|
|
421
421
|
]:
|
|
422
422
|
"""
|
|
423
|
-
Replace
|
|
423
|
+
Replace order
|
|
424
424
|
:param skip_deserialization: If true then api_response.response will be set but
|
|
425
425
|
api_response.body and api_response.headers will not be deserialized into schema
|
|
426
426
|
class instances
|
|
@@ -36,7 +36,7 @@ class OptionalManualTradeFormWithOptions(TypedDict, total=False):
|
|
|
36
36
|
# The universal symbol ID of the security to trade. Must be 'null' if `symbol` is provided, otherwise must be provided.
|
|
37
37
|
universal_symbol_id: UniversalSymbolIDNullable
|
|
38
38
|
|
|
39
|
-
# The security's trading ticker symbol.
|
|
39
|
+
# The security's trading ticker symbol. If 'symbol' is provided, then 'universal_symbol_id' must be 'null'.
|
|
40
40
|
symbol: typing.Optional[str]
|
|
41
41
|
|
|
42
42
|
# The limit price for `Limit` and `StopLimit` orders.
|
{snaptrade_python_sdk-11.0.119.dist-info → snaptrade_python_sdk-11.0.121.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.121
|
|
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.121)
|
|
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.121
|
|
115
115
|
```
|
|
116
116
|
|
|
117
117
|
## Getting Started<a id="getting-started"></a>
|
|
@@ -2146,7 +2146,7 @@ place_force_order_response = snaptrade.trading.place_force_order(
|
|
|
2146
2146
|
user_id="snaptrade-user-123",
|
|
2147
2147
|
user_secret="adf2aa34-8219-40f7-a6b3-60156985cc61",
|
|
2148
2148
|
universal_symbol_id="2bcd7cc3-e922-4976-bce1-9858296801c3",
|
|
2149
|
-
symbol="AAPL
|
|
2149
|
+
symbol="AAPL",
|
|
2150
2150
|
price=31.33,
|
|
2151
2151
|
stop=31.33,
|
|
2152
2152
|
units=10.5,
|
|
@@ -2176,7 +2176,7 @@ The universal symbol ID of the security to trade. Must be 'null' if `symbol` is
|
|
|
2176
2176
|
|
|
2177
2177
|
##### symbol: `Optional[str]`<a id="symbol-optionalstr"></a>
|
|
2178
2178
|
|
|
2179
|
-
The security's trading ticker symbol.
|
|
2179
|
+
The security's trading ticker symbol. If 'symbol' is provided, then 'universal_symbol_id' must be 'null'.
|
|
2180
2180
|
|
|
2181
2181
|
##### price: `Optional[Union[int, float]]`<a id="price-optionalunionint-float"></a>
|
|
2182
2182
|
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
snaptrade_client/__init__.py,sha256
|
|
2
|
-
snaptrade_client/api_client.py,sha256=
|
|
1
|
+
snaptrade_client/__init__.py,sha256=ic1i2RQl__XUXZihEnq6j3I5UXLBPlq1Nm1Co1lMCY0,820
|
|
2
|
+
snaptrade_client/api_client.py,sha256=RLWIA_6bLYIQmpTkGRv6UlXfRWwghN30oeXyzkyvGV8,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
|
-
snaptrade_client/apis/path_to_api.py,sha256=
|
|
5
|
+
snaptrade_client/apis/path_to_api.py,sha256=HwCExstG1DfCaKXCcDNrjaYe-4IRJFundBc6JCevMMA,13190
|
|
6
6
|
snaptrade_client/apis/paths/__init__.py,sha256=oIb-tz_ei5m0RWOOB0qXTkBKu61nYtwOUlWvQbD5gFE,243
|
|
7
7
|
snaptrade_client/apis/paths/accounts.py,sha256=aHSwrwNqPSa2ikmR-WP0dg2LbRBSNBB3n3_2OTCcxs4,103
|
|
8
8
|
snaptrade_client/apis/paths/accounts_account_id.py,sha256=Xv0hHwov50tVcdtqCS-Np0BmqMhUwrvjIQLaa9yPF3U,207
|
|
@@ -79,7 +79,7 @@ snaptrade_client/apis/tags/transactions_and_reporting_api_generated.py,sha256=Tw
|
|
|
79
79
|
snaptrade_client/client.py,sha256=goDwWRv9909OPXDnGGYst_mr53bg6RUs4PwIvnrl_kE,2116
|
|
80
80
|
snaptrade_client/client.pyi,sha256=goDwWRv9909OPXDnGGYst_mr53bg6RUs4PwIvnrl_kE,2116
|
|
81
81
|
snaptrade_client/client_custom.py,sha256=Jx9ulCzelMFlESjzVFQSjBlYcH4dWxSJJWZDMPLyetM,745
|
|
82
|
-
snaptrade_client/configuration.py,sha256=
|
|
82
|
+
snaptrade_client/configuration.py,sha256=S5CeInZBD_KA1lRYW_Y_1C8mp81DAtftxvA9p8kGV3U,19262
|
|
83
83
|
snaptrade_client/exceptions.py,sha256=X0apI_sgQpGpa-qIqPUClReCdHAxeSuA6GW0YH_RsWg,7771
|
|
84
84
|
snaptrade_client/exceptions_base.py,sha256=LAQkaC5C61-SdBLfyMjb0K7AYJkWVuLmg2uCvHa71FM,2274
|
|
85
85
|
snaptrade_client/model/__init__.py,sha256=ayi2MIzcf0eAIsY13ToiNplV9tW-pMBFrC0I9yckGM8,350
|
|
@@ -425,7 +425,7 @@ snaptrade_client/model/validated_trade_body.py,sha256=NkTel1ulgSjBd6K7vur6puEbfr
|
|
|
425
425
|
snaptrade_client/model/validated_trade_body.pyi,sha256=NkTel1ulgSjBd6K7vur6puEbfrg3u1vdmtUKArOu8ws,3085
|
|
426
426
|
snaptrade_client/models/__init__.py,sha256=nEO5bHCM19h-AQp0rl6XNHrTZ4Aw4ffqVOPRYOPOr_I,13312
|
|
427
427
|
snaptrade_client/operation_parameter_map.py,sha256=xHRI_s-1z4I7jbPy5zLYHZSlOiw2eYs1xVEb61juiGw,19339
|
|
428
|
-
snaptrade_client/paths/__init__.py,sha256=
|
|
428
|
+
snaptrade_client/paths/__init__.py,sha256=RkrwayYs7ExQyON-a4r6mopR2dJyFRI6_tUoiI85MsI,3789
|
|
429
429
|
snaptrade_client/paths/accounts/__init__.py,sha256=_Bqi6B13A-kgd0AOpqmcE1vTxJDfoz-r3Hwf-AmwW6A,307
|
|
430
430
|
snaptrade_client/paths/accounts/get.py,sha256=MDE_4VCylBroYDkMQe9II1qCGf6gTTDGCShFyGLXf00,16463
|
|
431
431
|
snaptrade_client/paths/accounts/get.pyi,sha256=gna7qIU-95WqOFl6qTsP18ZY7SKi9CYEBAbARPAPPF4,16261
|
|
@@ -501,8 +501,8 @@ snaptrade_client/paths/accounts_account_id_trading_options/__init__.py,sha256=W4
|
|
|
501
501
|
snaptrade_client/paths/accounts_account_id_trading_options/post.py,sha256=LXlATF-SWj6cqOixY73JWNM0VGxCixdNBkswXRxiOfs,25355
|
|
502
502
|
snaptrade_client/paths/accounts_account_id_trading_options/post.pyi,sha256=nUHg-X1j6Oa9ZZX54SIweTKEBmgh7vIiOs_rKkUG45A,25131
|
|
503
503
|
snaptrade_client/paths/accounts_account_id_trading_replace/__init__.py,sha256=k1IliXIhslkwLvlDi42TeVY-HkZ8VO-9vcTsYEIpcyc,361
|
|
504
|
-
snaptrade_client/paths/accounts_account_id_trading_replace/post.py,sha256=
|
|
505
|
-
snaptrade_client/paths/accounts_account_id_trading_replace/post.pyi,sha256=
|
|
504
|
+
snaptrade_client/paths/accounts_account_id_trading_replace/post.py,sha256=6ae5uz3eI0vPvG5RDy9dwew2lhjHuesIswWzAOCXmvs,27269
|
|
505
|
+
snaptrade_client/paths/accounts_account_id_trading_replace/post.pyi,sha256=BKyk-zuarOS7R-PSJuMGuK-K_9oUtuqy5S0pVJ4XdJ4,27015
|
|
506
506
|
snaptrade_client/paths/activities/__init__.py,sha256=eRdkddwyc4GOcQQd5YCIn3RK74b8xxVTCJ--uTCpDUo,311
|
|
507
507
|
snaptrade_client/paths/activities/get.py,sha256=cuCHK_FPuIbYw9wI7MTCIYZnKKWE6sqZbEBXp74MzKE,21979
|
|
508
508
|
snaptrade_client/paths/activities/get.pyi,sha256=_fc__LqtH6T-tEbPOdyn95NZKHDQ_EO_m-0xDzpugiE,21777
|
|
@@ -669,7 +669,7 @@ snaptrade_client/type/manual_trade_and_impact.py,sha256=Itewupnzd0ui_8do2Bll-l7F
|
|
|
669
669
|
snaptrade_client/type/manual_trade_balance.py,sha256=K_eBMvo05GpZCvnWKQzUY2NFqyPEAH8GrdDreURl6s0,942
|
|
670
670
|
snaptrade_client/type/manual_trade_form.py,sha256=VENobS352pltGcepu3Cg9uvMZcPZv7U7cZYkh7AdbHo,1628
|
|
671
671
|
snaptrade_client/type/manual_trade_form_bracket.py,sha256=hB8F_NEX1IG23ChV7ddj3mDF_bbdGQGJOtitkgOyh-c,1670
|
|
672
|
-
snaptrade_client/type/manual_trade_form_with_options.py,sha256=
|
|
672
|
+
snaptrade_client/type/manual_trade_form_with_options.py,sha256=KpY_Wetc67tSZZA9Z2N6ig0jCycpaTPRTjSNtNj7cEU,2196
|
|
673
673
|
snaptrade_client/type/manual_trade_impact.py,sha256=djvwCJI-RgLPnD3Mm88Vv6To66nnMiD-ZEcSNuxyH3o,1195
|
|
674
674
|
snaptrade_client/type/manual_trade_replace_form.py,sha256=vza-Uwr022gRIHIpUYNAoKOmtEg5k0LFMhXrinHDPko,1421
|
|
675
675
|
snaptrade_client/type/manual_trade_symbol.py,sha256=0P6DXJhVNfk-lVEfkwb7t5lATDQdR1lYXlDkBQLhc0s,1461
|
|
@@ -771,7 +771,7 @@ snaptrade_client/type/user_secret.py,sha256=pKCVhqf1rROHwa6tvoyA5OAKXCBAmNDvIQCf
|
|
|
771
771
|
snaptrade_client/type/validated_trade_body.py,sha256=ZIPBQWii_a-9zHaBCJ6bQtmL1_I7AG0zwuvkY-ZQ6R4,890
|
|
772
772
|
snaptrade_client/type_util.py,sha256=JIrMYgJzd4IJ8Ne2vqcahlPA9dVmphL9sn8gwccCB4Y,563
|
|
773
773
|
snaptrade_client/validation_metadata.py,sha256=VTN5y-NudHXok1X468J4PnGze_tGEAcs1v3gsXmcrb0,3172
|
|
774
|
-
snaptrade_python_sdk-11.0.
|
|
775
|
-
snaptrade_python_sdk-11.0.
|
|
776
|
-
snaptrade_python_sdk-11.0.
|
|
777
|
-
snaptrade_python_sdk-11.0.
|
|
774
|
+
snaptrade_python_sdk-11.0.121.dist-info/LICENSE,sha256=W_1kcxEzOnZXIYJ1GVUipbmUu6dNLt-Pc-OI55h3k-A,1081
|
|
775
|
+
snaptrade_python_sdk-11.0.121.dist-info/METADATA,sha256=prLmnjz-wQFRVlKHaT3TkN0twgr5jKRdj14pomUZpcg,95898
|
|
776
|
+
snaptrade_python_sdk-11.0.121.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
|
777
|
+
snaptrade_python_sdk-11.0.121.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|