taspinar / twitterscraper

Scrape Twitter for Tweets
MIT License
2.4k stars 581 forks source link

Exception has occurred: ImportError #188

Closed sxshateri closed 5 years ago

sxshateri commented 5 years ago

hey guys im trying to find out how this script works on visual studio code but it just doesnt work and im getting "Exception has occurred: ImportError" error. here is the complete error:

Exception has occurred: ImportError cannot import name 'query_tweets' from 'twitterscraper' (c:\Users\Dell\Documents\python 2\twitterscraper.py) File "C:\Users\Dell\Documents\python 2\twitterscraper.py", line 1, in <module> from twitterscraper import query_tweets File "C:\Users\Dell\Documents\python 2\twitterscraper.py", line 1, in <module> from twitterscraper import query_tweets

taspinar commented 5 years ago

Hi @sxshateri Twitterscraper does not work properly for Python2. Can you install Python3? Time is running out on Python2 anyway.

The right way to import a function from the query module is as follows: from twitterscraper.query import query_tweets

avanibhatnagar commented 4 years ago

I'm using Python 3.8 and I still get the same import error:

from twitterscraper import query_tweets
ImportError: cannot import name 'query_tweets' from partially initialized module 'twitterscraper' (most likely due to a circular import) (D:\Users\....\twitterscraper.py)

Where twitterscraper.py is the get_twitter_user_data.py from examples in this repo

DeepanjalShr commented 4 years ago

Hi, I am unable to run twitter scraper, it gives the under mentioned error. Please help! cannot import name 'query_tweets' from 'twitterscraper' (C:\Users\user.spyder-py3\twitterscraper.py)

Robgroe commented 2 years ago

I am running into the same problem, did you fix it? If so, how?