We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I get this error when i install the package and try to run my code. the error is "AttributeError: 'FileFinder' object has no attribute 'find_module'"
Anyone help please ,
import snscrape.modules.twitter as sntwitter import pandas as pd username = "elonmusk" tweets_list = [] for i, tweet in enumerate(sntwitter.TwitterSearchScraper('from:'+username).get_items()): if i >= 100: break tweets_list.append([tweet.date, tweet.id, tweet.content, tweet.url]) tweets_df = pd.DataFrame(tweets_list, columns=['Datetime', 'Tweet Id', 'Text', 'URL']) print(tweets_df)
python3 index.py
It should get all tweets by elon musk
No response
MacOS
python3 --version
Python 3.12.0
snscrape --version
I again get this error AttributeError: 'FileFinder' object has no attribute 'find_module'
twitter
Module (import snscrape.modules.something in Python code)
import snscrape.modules.something
The text was updated successfully, but these errors were encountered:
Duplicate of #782, but Twitter scraping won't work currently even after that's resolved (#996).
Sorry, something went wrong.
AttributeError
find_module
How to fix this????????????
No branches or pull requests
Describe the bug
I get this error when i install the package and try to run my code. the error is "AttributeError: 'FileFinder' object has no attribute 'find_module'"
Anyone help please ,
How to reproduce
python3 index.py
Expected behaviour
It should get all tweets by elon musk
Screenshots and recordings
No response
Operating system
MacOS
Python version: output of
python3 --version
Python 3.12.0
snscrape version: output of
snscrape --version
I again get this error AttributeError: 'FileFinder' object has no attribute 'find_module'
Scraper
twitter
How are you using snscrape?
Module (
import snscrape.modules.something
in Python code)Backtrace
No response
Log output
No response
Dump of locals
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: