tastytrade 10.3.0__py3-none-any.whl → 11.0.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.
tastytrade/__init__.py CHANGED
@@ -1,10 +1,10 @@
1
1
  import logging
2
2
 
3
3
  API_URL = "https://api.tastyworks.com"
4
- BACKTEST_URL = "https://backtester.vast.tastyworks.com"
4
+ API_VERSION = "20251026"
5
5
  CERT_URL = "https://api.cert.tastyworks.com"
6
6
  VAST_URL = "https://vast.tastyworks.com"
7
- VERSION = "10.3.0"
7
+ VERSION = "11.0.0"
8
8
 
9
9
  __version__ = VERSION
10
10
  version_str: str = f"tastyware/tastytrade:v{VERSION}"
@@ -15,13 +15,7 @@ logger.setLevel(logging.DEBUG)
15
15
  # ruff: noqa: E402
16
16
 
17
17
  from .account import Account
18
- from .session import OAuthSession, Session
18
+ from .session import Session
19
19
  from .streamer import AlertStreamer, DXLinkStreamer
20
20
 
21
- __all__ = [
22
- "Account",
23
- "AlertStreamer",
24
- "DXLinkStreamer",
25
- "OAuthSession",
26
- "Session",
27
- ]
21
+ __all__ = ["Account", "AlertStreamer", "DXLinkStreamer", "Session"]