shaikhsajid1111 / twitter-scraper-selenium

Python's package to scrap Twitter's front-end easily
https://pypi.org/project/twitter-scraper-selenium
MIT License
308 stars 50 forks source link

API rate limit exceeded with scrape_profile() function #65

Open secreit opened 1 year ago

secreit commented 1 year ago

first off all thanks for the package.

i'm getting this error:

ValueError: {'message': "API rate limit exceeded for (my ip adress) (But here's the good news: Authenticated requests get a higher rate limit. Check out the documentation for more details.)", 'documentation_url': 'https://docs.github.com/rest/overview/resources-in-the-rest-api#rate-limiting'}

any way to get around this?

shaikhsajid1111 commented 1 year ago

That link redirects to GitHub docs. I don't understand how it showed up?, What were you doing?. Is it coming from webdriver manager I guess? Because you spawned multiple instances of browser

secreit commented 1 year ago

i am just scraping a twitter profiles last tweet. when i do it once every 30 seconds i get this message after thirty minutes. there appears to be a rate limit so its only possible to send 60 requests an hour as mentioned in the link "For unauthenticated requests, the rate limit allows for up to 60 requests per hour. Unauthenticated requests are associated with the originating IP address, and not the person making requests.".

i don't really understand why or how this works. i'm just using the scrape_profile function.

secreit commented 1 year ago

also i just noticed that when checking for the most recent tweet when a user has a pinned tweet that one will be chosen instead,

shaikhsajid1111 commented 1 year ago

That rate limit is basically on webdriver manager, one of the dependency that installs webdriver for automating web browser

phanxuanphucnd commented 1 year ago

@shaikhsajid1111 I use this function to crawl all tweets of 1 user but only get 7 tweets? Can you tell me how to get all of that person's tweets?