-
Notifications
You must be signed in to change notification settings - Fork 113
Known Issues
Chris Maddalena edited this page Sep 4, 2018
·
3 revisions
Tweepy is used to interact with the Twitter API. If you are using Python v3.7, Tweepy breaks because it tries to use async
as a variable and this is not allowed in v3.7. This has been fixed, but Tweepy has not pushed a release with the updated code.
https://github.com/tweepy/tweepy/issues/1017
You can execute ODIN using Python v3.6 or you can open the offending streaming.py file in vim
and run :%s/async/async_/g
to perform a find and replace. That will fix it for v3.7.