From 842b5314353594e670d7337a5abd6580c506168a Mon Sep 17 00:00:00 2001 From: MaxxRK Date: Tue, 12 Mar 2024 09:30:26 -0500 Subject: [PATCH 1/2] fix url for login check --- schwab_api/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schwab_api/urls.py b/schwab_api/urls.py index f0638ef..ae39297 100644 --- a/schwab_api/urls.py +++ b/schwab_api/urls.py @@ -6,7 +6,7 @@ def account_summary(): return "https://client.schwab.com/clientapps/accounts/summary/" def trade_ticket(): - return "https://client.schwab.com/app/trade/tom/#/trade" + return "https://client.schwab.com/app/trade/tom/trade?ShowUN=YES" # New API def order_verification_v2(): From c483ce245856555a8cd7fe4151443e5fcd0c9a31 Mon Sep 17 00:00:00 2001 From: Jafer Haider Date: Tue, 12 Mar 2024 14:32:50 -0500 Subject: [PATCH 2/2] Update setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c6b9caa..ef14b31 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setuptools.setup( name="schwab_api", packages=setuptools.find_packages(), - version="0.3.11", + version="0.3.12", license="MIT", description="Unofficial Schwab API wrapper in Python 3.", author="Jafer Haider",