Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

'Twython' from partially initialized module 'twython' (most likely due to a circular import) #536

Open
NilSagor opened this issue Jul 11, 2020 · 2 comments

Comments

@NilSagor
Copy link

NilSagor commented Jul 11, 2020

python 3.8.2
twython 3.8.2

ImportError: cannot import name 'Twython' from partially initialized module 'twython' (most likely due to a circular import)

import sys
import string
from twython import Twython

twitter = Twython('Insert Consumer Key Here',
'Insert Consumer Secret Key',oauth_version=2)
Access_token = twitter.obtain_access_token()
t = Twython('Insert Consumer Key', access_token=Access_token)

user_timeline = t.search(q='@PureMichigan', count=20, include_rts=1)

for tweets in user_timeline['statuses']:
print(tweets['text'] +"\n")

@gangaasoonu
Copy link

Same .. Wondering how to solve.

@gangaasoonu
Copy link

Found the solution:

python file/script name was same as the Library
viz., twython.py

Python Interpreter got confused.

renaming the python script name to something else (viz., call_twython.py) solved this Issue.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants