Installed this package in 2024 and developed a lot of code on top of it. Working great so far.
Tasty converted to Oauth2 and, apparently. the version of code I had installed does not support 2FA.
Today, Tasty stopped supporting the old login/password system.
So I spun up a new virtual environment and installed the current version.
Is there a document somewhere that describes what needs to be converted? So far I have:
get_market_metrics can no longer be imported from tastytrade I'm just removing it for now, not sure if that will work?
EventType can not longer be imported from tastytrade.dxfeed Again, I just removed it
The session appears to be created correctly but, apparently, streamer creation has changed as this no longer works:
streamer = await DXLinkStreamer.create(session)
^^^^^^^^^^^^^^^^^^^^^
AttributeError: type object 'DXLinkStreamer' has no attribute 'create'
Not sure how to proceed from here or what other issues I will encounter.
Is there some documentation on doing the conversion?
Installed this package in 2024 and developed a lot of code on top of it. Working great so far.
Tasty converted to Oauth2 and, apparently. the version of code I had installed does not support 2FA.
Today, Tasty stopped supporting the old login/password system.
So I spun up a new virtual environment and installed the current version.
Is there a document somewhere that describes what needs to be converted? So far I have:
get_market_metrics can no longer be imported from tastytradeI'm just removing it for now, not sure if that will work?EventType can not longer be imported from tastytrade.dxfeedAgain, I just removed itThe session appears to be created correctly but, apparently, streamer creation has changed as this no longer works:
Not sure how to proceed from here or what other issues I will encounter.
Is there some documentation on doing the conversion?