Skip to content Skip to sidebar Skip to footer

How Could I Solve This Error To Scrape Twitter With Python?

I'm trying to do a personal project for my portfolio, I would like to scrape the tweets about the president Macron but I get this error with twitterscrapper. from twitterscraper im

Solution 1:

The code is fine, the problem is that you installed the wrong version of twitterscraper.

You may update your package by using pip install twitterscraper --upgrade

or

pip install twitterscraper==1.6.1 for ensuring it is the latest

Post a Comment for "How Could I Solve This Error To Scrape Twitter With Python?"