snaptrade-python-sdk 11.0.111__py3-none-any.whl → 11.0.112__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/paths/accounts_account_id_trading_simple/post.py +2 -2
- snaptrade_client/paths/accounts_account_id_trading_simple/post.pyi +2 -2
- snaptrade_client/paths/accounts_account_id_trading_simple_brokerage_order_id_cancel/post.py +2 -2
- snaptrade_client/paths/accounts_account_id_trading_simple_brokerage_order_id_cancel/post.pyi +2 -2
- snaptrade_client/paths/accounts_account_id_trading_simple_brokerage_order_id_replace/patch.py +2 -2
- snaptrade_client/paths/accounts_account_id_trading_simple_brokerage_order_id_replace/patch.pyi +2 -2
- snaptrade_client/paths/accounts_account_id_trading_simple_preview/post.py +2 -2
- snaptrade_client/paths/accounts_account_id_trading_simple_preview/post.pyi +2 -2
- {snaptrade_python_sdk-11.0.111.dist-info → snaptrade_python_sdk-11.0.112.dist-info}/METADATA +3 -3
- {snaptrade_python_sdk-11.0.111.dist-info → snaptrade_python_sdk-11.0.112.dist-info}/RECORD +15 -15
- {snaptrade_python_sdk-11.0.111.dist-info → snaptrade_python_sdk-11.0.112.dist-info}/LICENSE +0 -0
- {snaptrade_python_sdk-11.0.111.dist-info → snaptrade_python_sdk-11.0.112.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.112/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.112".\
|
|
442
442
|
format(env=sys.platform, pyversion=sys.version)
|
|
443
443
|
|
|
444
444
|
def get_host_settings(self):
|
|
@@ -262,7 +262,7 @@ class BaseApi(api_client.Api):
|
|
|
262
262
|
AsyncGeneratorResponse,
|
|
263
263
|
]:
|
|
264
264
|
"""
|
|
265
|
-
Place order
|
|
265
|
+
Place crypto order
|
|
266
266
|
:param skip_deserialization: If true then api_response.response will be set but
|
|
267
267
|
api_response.body and api_response.headers will not be deserialized into schema
|
|
268
268
|
class instances
|
|
@@ -408,7 +408,7 @@ class BaseApi(api_client.Api):
|
|
|
408
408
|
api_client.ApiResponseWithoutDeserialization,
|
|
409
409
|
]:
|
|
410
410
|
"""
|
|
411
|
-
Place order
|
|
411
|
+
Place crypto order
|
|
412
412
|
:param skip_deserialization: If true then api_response.response will be set but
|
|
413
413
|
api_response.body and api_response.headers will not be deserialized into schema
|
|
414
414
|
class instances
|
|
@@ -250,7 +250,7 @@ class BaseApi(api_client.Api):
|
|
|
250
250
|
AsyncGeneratorResponse,
|
|
251
251
|
]:
|
|
252
252
|
"""
|
|
253
|
-
Place order
|
|
253
|
+
Place crypto order
|
|
254
254
|
:param skip_deserialization: If true then api_response.response will be set but
|
|
255
255
|
api_response.body and api_response.headers will not be deserialized into schema
|
|
256
256
|
class instances
|
|
@@ -396,7 +396,7 @@ class BaseApi(api_client.Api):
|
|
|
396
396
|
api_client.ApiResponseWithoutDeserialization,
|
|
397
397
|
]:
|
|
398
398
|
"""
|
|
399
|
-
Place order
|
|
399
|
+
Place crypto order
|
|
400
400
|
:param skip_deserialization: If true then api_response.response will be set but
|
|
401
401
|
api_response.body and api_response.headers will not be deserialized into schema
|
|
402
402
|
class instances
|
|
@@ -224,7 +224,7 @@ class BaseApi(api_client.Api):
|
|
|
224
224
|
AsyncGeneratorResponse,
|
|
225
225
|
]:
|
|
226
226
|
"""
|
|
227
|
-
Cancel
|
|
227
|
+
Cancel crypto order
|
|
228
228
|
:param skip_deserialization: If true then api_response.response will be set but
|
|
229
229
|
api_response.body and api_response.headers will not be deserialized into schema
|
|
230
230
|
class instances
|
|
@@ -353,7 +353,7 @@ class BaseApi(api_client.Api):
|
|
|
353
353
|
api_client.ApiResponseWithoutDeserialization,
|
|
354
354
|
]:
|
|
355
355
|
"""
|
|
356
|
-
Cancel
|
|
356
|
+
Cancel crypto order
|
|
357
357
|
:param skip_deserialization: If true then api_response.response will be set but
|
|
358
358
|
api_response.body and api_response.headers will not be deserialized into schema
|
|
359
359
|
class instances
|
snaptrade_client/paths/accounts_account_id_trading_simple_brokerage_order_id_cancel/post.pyi
CHANGED
|
@@ -212,7 +212,7 @@ class BaseApi(api_client.Api):
|
|
|
212
212
|
AsyncGeneratorResponse,
|
|
213
213
|
]:
|
|
214
214
|
"""
|
|
215
|
-
Cancel
|
|
215
|
+
Cancel crypto order
|
|
216
216
|
:param skip_deserialization: If true then api_response.response will be set but
|
|
217
217
|
api_response.body and api_response.headers will not be deserialized into schema
|
|
218
218
|
class instances
|
|
@@ -341,7 +341,7 @@ class BaseApi(api_client.Api):
|
|
|
341
341
|
api_client.ApiResponseWithoutDeserialization,
|
|
342
342
|
]:
|
|
343
343
|
"""
|
|
344
|
-
Cancel
|
|
344
|
+
Cancel crypto order
|
|
345
345
|
:param skip_deserialization: If true then api_response.response will be set but
|
|
346
346
|
api_response.body and api_response.headers will not be deserialized into schema
|
|
347
347
|
class instances
|
snaptrade_client/paths/accounts_account_id_trading_simple_brokerage_order_id_replace/patch.py
CHANGED
|
@@ -295,7 +295,7 @@ class BaseApi(api_client.Api):
|
|
|
295
295
|
AsyncGeneratorResponse,
|
|
296
296
|
]:
|
|
297
297
|
"""
|
|
298
|
-
|
|
298
|
+
Replace crypto order
|
|
299
299
|
:param skip_deserialization: If true then api_response.response will be set but
|
|
300
300
|
api_response.body and api_response.headers will not be deserialized into schema
|
|
301
301
|
class instances
|
|
@@ -442,7 +442,7 @@ class BaseApi(api_client.Api):
|
|
|
442
442
|
api_client.ApiResponseWithoutDeserialization,
|
|
443
443
|
]:
|
|
444
444
|
"""
|
|
445
|
-
|
|
445
|
+
Replace crypto order
|
|
446
446
|
:param skip_deserialization: If true then api_response.response will be set but
|
|
447
447
|
api_response.body and api_response.headers will not be deserialized into schema
|
|
448
448
|
class instances
|
snaptrade_client/paths/accounts_account_id_trading_simple_brokerage_order_id_replace/patch.pyi
CHANGED
|
@@ -282,7 +282,7 @@ class BaseApi(api_client.Api):
|
|
|
282
282
|
AsyncGeneratorResponse,
|
|
283
283
|
]:
|
|
284
284
|
"""
|
|
285
|
-
|
|
285
|
+
Replace crypto order
|
|
286
286
|
:param skip_deserialization: If true then api_response.response will be set but
|
|
287
287
|
api_response.body and api_response.headers will not be deserialized into schema
|
|
288
288
|
class instances
|
|
@@ -429,7 +429,7 @@ class BaseApi(api_client.Api):
|
|
|
429
429
|
api_client.ApiResponseWithoutDeserialization,
|
|
430
430
|
]:
|
|
431
431
|
"""
|
|
432
|
-
|
|
432
|
+
Replace crypto order
|
|
433
433
|
:param skip_deserialization: If true then api_response.response will be set but
|
|
434
434
|
api_response.body and api_response.headers will not be deserialized into schema
|
|
435
435
|
class instances
|
|
@@ -262,7 +262,7 @@ class BaseApi(api_client.Api):
|
|
|
262
262
|
AsyncGeneratorResponse,
|
|
263
263
|
]:
|
|
264
264
|
"""
|
|
265
|
-
Preview order
|
|
265
|
+
Preview crypto order
|
|
266
266
|
:param skip_deserialization: If true then api_response.response will be set but
|
|
267
267
|
api_response.body and api_response.headers will not be deserialized into schema
|
|
268
268
|
class instances
|
|
@@ -408,7 +408,7 @@ class BaseApi(api_client.Api):
|
|
|
408
408
|
api_client.ApiResponseWithoutDeserialization,
|
|
409
409
|
]:
|
|
410
410
|
"""
|
|
411
|
-
Preview order
|
|
411
|
+
Preview crypto order
|
|
412
412
|
:param skip_deserialization: If true then api_response.response will be set but
|
|
413
413
|
api_response.body and api_response.headers will not be deserialized into schema
|
|
414
414
|
class instances
|
|
@@ -250,7 +250,7 @@ class BaseApi(api_client.Api):
|
|
|
250
250
|
AsyncGeneratorResponse,
|
|
251
251
|
]:
|
|
252
252
|
"""
|
|
253
|
-
Preview order
|
|
253
|
+
Preview crypto order
|
|
254
254
|
:param skip_deserialization: If true then api_response.response will be set but
|
|
255
255
|
api_response.body and api_response.headers will not be deserialized into schema
|
|
256
256
|
class instances
|
|
@@ -396,7 +396,7 @@ class BaseApi(api_client.Api):
|
|
|
396
396
|
api_client.ApiResponseWithoutDeserialization,
|
|
397
397
|
]:
|
|
398
398
|
"""
|
|
399
|
-
Preview order
|
|
399
|
+
Preview crypto order
|
|
400
400
|
:param skip_deserialization: If true then api_response.response will be set but
|
|
401
401
|
api_response.body and api_response.headers will not be deserialized into schema
|
|
402
402
|
class instances
|
{snaptrade_python_sdk-11.0.111.dist-info → snaptrade_python_sdk-11.0.112.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.112
|
|
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.112)
|
|
34
34
|
[](https://github.com/passiv/snaptrade-sdks/tree/master/sdks/python#readme)
|
|
35
35
|
[](https://snaptrade.com/)
|
|
36
36
|
|
|
@@ -110,7 +110,7 @@ Python >=3.8
|
|
|
110
110
|
## Installation<a id="installation"></a>
|
|
111
111
|
|
|
112
112
|
```sh
|
|
113
|
-
pip install snaptrade-python-sdk==11.0.
|
|
113
|
+
pip install snaptrade-python-sdk==11.0.112
|
|
114
114
|
```
|
|
115
115
|
|
|
116
116
|
## 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=sEXEkhAFgUN3nNsNhrloY-3WshPNsC6-PNGN3r6RxOE,820
|
|
2
|
+
snaptrade_client/api_client.py,sha256=RRP3axCNqNueVj6-SJ32YDYjfKI_ICs8fS4ropKi0rM,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=fDtFd8AqFO8oDYvdEAFTO9PrVL_qMSjlch1YRVeidlk,13189
|
|
@@ -78,7 +78,7 @@ snaptrade_client/apis/tags/transactions_and_reporting_api_generated.py,sha256=Tw
|
|
|
78
78
|
snaptrade_client/client.py,sha256=goDwWRv9909OPXDnGGYst_mr53bg6RUs4PwIvnrl_kE,2116
|
|
79
79
|
snaptrade_client/client.pyi,sha256=goDwWRv9909OPXDnGGYst_mr53bg6RUs4PwIvnrl_kE,2116
|
|
80
80
|
snaptrade_client/client_custom.py,sha256=Jx9ulCzelMFlESjzVFQSjBlYcH4dWxSJJWZDMPLyetM,745
|
|
81
|
-
snaptrade_client/configuration.py,sha256=
|
|
81
|
+
snaptrade_client/configuration.py,sha256=R_rnFHrgApeCz5ivpURrG7XTvp7_jqr8ux715pBVmnw,19262
|
|
82
82
|
snaptrade_client/exceptions.py,sha256=X0apI_sgQpGpa-qIqPUClReCdHAxeSuA6GW0YH_RsWg,7771
|
|
83
83
|
snaptrade_client/exceptions_base.py,sha256=LAQkaC5C61-SdBLfyMjb0K7AYJkWVuLmg2uCvHa71FM,2274
|
|
84
84
|
snaptrade_client/model/__init__.py,sha256=ayi2MIzcf0eAIsY13ToiNplV9tW-pMBFrC0I9yckGM8,350
|
|
@@ -477,17 +477,17 @@ snaptrade_client/paths/accounts_account_id_trading_options/__init__.py,sha256=W4
|
|
|
477
477
|
snaptrade_client/paths/accounts_account_id_trading_options/post.py,sha256=PD0GAZs1vG9ModhGRDXL72e0BVxi47iHHXMw7HrmuO0,25375
|
|
478
478
|
snaptrade_client/paths/accounts_account_id_trading_options/post.pyi,sha256=vVwgbPJYIz_qF38RBfJA3B65senCndjwCGnm_ZPNkRw,25151
|
|
479
479
|
snaptrade_client/paths/accounts_account_id_trading_simple/__init__.py,sha256=1kfuRO4L1XUyRnv-XbLhv5SrvJ4UqjzjKDfRR9EIu9Y,359
|
|
480
|
-
snaptrade_client/paths/accounts_account_id_trading_simple/post.py,sha256=
|
|
481
|
-
snaptrade_client/paths/accounts_account_id_trading_simple/post.pyi,sha256=
|
|
480
|
+
snaptrade_client/paths/accounts_account_id_trading_simple/post.py,sha256=tDI-5-LFAMPGmwjayMH66YGyDp4K6V1teu-esNcbFYU,25869
|
|
481
|
+
snaptrade_client/paths/accounts_account_id_trading_simple/post.pyi,sha256=xJVttopVQwLJq-yApP6ioXGK2CQtC7y8ummgcLxqKlU,25645
|
|
482
482
|
snaptrade_client/paths/accounts_account_id_trading_simple_brokerage_order_id_cancel/__init__.py,sha256=MIas2oLBrQ1ygXwLaeBXHJiHUTOO_-UQBlcikzqdH9w,411
|
|
483
|
-
snaptrade_client/paths/accounts_account_id_trading_simple_brokerage_order_id_cancel/post.py,sha256=
|
|
484
|
-
snaptrade_client/paths/accounts_account_id_trading_simple_brokerage_order_id_cancel/post.pyi,sha256=
|
|
483
|
+
snaptrade_client/paths/accounts_account_id_trading_simple_brokerage_order_id_cancel/post.py,sha256=sKvRdujp_z9646vBYgJE8GeX0QasPjDj1dw6bPR8VOU,19639
|
|
484
|
+
snaptrade_client/paths/accounts_account_id_trading_simple_brokerage_order_id_cancel/post.pyi,sha256=13fLCJerlM2vEsX87hGxAWdvzekW-ZTDnwDiq1J_8s8,19415
|
|
485
485
|
snaptrade_client/paths/accounts_account_id_trading_simple_brokerage_order_id_replace/__init__.py,sha256=TL1dJxF1QEDBQVAYOCWuwb-vE21liUhT20nusDJnW14,413
|
|
486
|
-
snaptrade_client/paths/accounts_account_id_trading_simple_brokerage_order_id_replace/patch.py,sha256=
|
|
487
|
-
snaptrade_client/paths/accounts_account_id_trading_simple_brokerage_order_id_replace/patch.pyi,sha256=
|
|
486
|
+
snaptrade_client/paths/accounts_account_id_trading_simple_brokerage_order_id_replace/patch.py,sha256=7AM1y20_B-ZbkVWtFZpARnO2Y99s-7XZV4DypJURvr0,27740
|
|
487
|
+
snaptrade_client/paths/accounts_account_id_trading_simple_brokerage_order_id_replace/patch.pyi,sha256=Oj2TgDOsyM7soC7RSj-MxRStmde3hDA82HyhYUwyVTY,27486
|
|
488
488
|
snaptrade_client/paths/accounts_account_id_trading_simple_preview/__init__.py,sha256=e85yQ-g79CpD-OBNRqwmVKTYfuR_Dc9XmXqfZiJFJmg,375
|
|
489
|
-
snaptrade_client/paths/accounts_account_id_trading_simple_preview/post.py,sha256=
|
|
490
|
-
snaptrade_client/paths/accounts_account_id_trading_simple_preview/post.pyi,sha256=
|
|
489
|
+
snaptrade_client/paths/accounts_account_id_trading_simple_preview/post.py,sha256=j-ARrAo-nkNB1EEAzScNL8dII6oAu1m6sE-3KBAzx5k,25693
|
|
490
|
+
snaptrade_client/paths/accounts_account_id_trading_simple_preview/post.pyi,sha256=AQy3AuaWA2wqXhQKXm-4kFsGYKVHM9mXX0XRijN6sTU,25469
|
|
491
491
|
snaptrade_client/paths/activities/__init__.py,sha256=eRdkddwyc4GOcQQd5YCIn3RK74b8xxVTCJ--uTCpDUo,311
|
|
492
492
|
snaptrade_client/paths/activities/get.py,sha256=cuCHK_FPuIbYw9wI7MTCIYZnKKWE6sqZbEBXp74MzKE,21979
|
|
493
493
|
snaptrade_client/paths/activities/get.pyi,sha256=_fc__LqtH6T-tEbPOdyn95NZKHDQ_EO_m-0xDzpugiE,21777
|
|
@@ -746,7 +746,7 @@ snaptrade_client/type/user_secret.py,sha256=pKCVhqf1rROHwa6tvoyA5OAKXCBAmNDvIQCf
|
|
|
746
746
|
snaptrade_client/type/validated_trade_body.py,sha256=ZIPBQWii_a-9zHaBCJ6bQtmL1_I7AG0zwuvkY-ZQ6R4,890
|
|
747
747
|
snaptrade_client/type_util.py,sha256=JIrMYgJzd4IJ8Ne2vqcahlPA9dVmphL9sn8gwccCB4Y,563
|
|
748
748
|
snaptrade_client/validation_metadata.py,sha256=VTN5y-NudHXok1X468J4PnGze_tGEAcs1v3gsXmcrb0,3172
|
|
749
|
-
snaptrade_python_sdk-11.0.
|
|
750
|
-
snaptrade_python_sdk-11.0.
|
|
751
|
-
snaptrade_python_sdk-11.0.
|
|
752
|
-
snaptrade_python_sdk-11.0.
|
|
749
|
+
snaptrade_python_sdk-11.0.112.dist-info/LICENSE,sha256=W_1kcxEzOnZXIYJ1GVUipbmUu6dNLt-Pc-OI55h3k-A,1081
|
|
750
|
+
snaptrade_python_sdk-11.0.112.dist-info/METADATA,sha256=z3nRLk6PyRBDQrH9MJGDZWPsWr-ko_8aI1CaDTIuPjM,94696
|
|
751
|
+
snaptrade_python_sdk-11.0.112.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
|
752
|
+
snaptrade_python_sdk-11.0.112.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|