-
Notifications
You must be signed in to change notification settings - Fork 51
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
Are Musk,s new limitations impacting this module? #74
Comments
Yes, this module is supposed to scrape public data only. Now, we can't access pages without logging in which leads to a blocker |
so does that mean we cant scrape data at all? without logging in ? |
Yeah, without logging in it is not possible currently |
I how could we implement the logging in? Could you show how in code? |
I have logged in, still not working, what now? |
So scraping tweets now works, although I'm getting random 10, not the latest 10. I'm using this code: scrape_profile(twitter_username="tim_cook",output_format="csv",browser="firefox",tweets_count=10,filename="tim_cook_tweetsV3",directory="C:/Users/MCOBPHD19/OneDrive/Documents/Dissertation") But scraping profile details doesn't. Using: twitter_username = "tim_cook" The error I get is this. Is this still the authentication issue? If so, why can I now scrape tweets? ~\anaconda3\lib\site-packages\twitter_scraper_selenium\profile_details.py in get_profile_details(twitter_username, proxy, filename, directory) TypeError: object of type 'NoneType' has no len() |
I'm struggling with this same issue. Is there any workaround? |
There are still problems for users scraping without logging in. The tweets are not present the same as it is present for logged-in users on Twitter |
These lines of code worked fine just a few weeks ago and now I'm getting TypeError: object of type 'NoneType' has no len()
This is the code I'm using:
from twitter_scraper_selenium import get_profile_details
twitter_username = "tim_cook"
filename = "twitter_dummy_ceo"
get_profile_details(twitter_username=twitter_username, filename=filename)
The text was updated successfully, but these errors were encountered: