Skip to content Skip to sidebar Skip to footer

How To Collect Tweets About An Event That Are Posted On Specific Date Using Python?

I wish to collect all tweets containing specific keywords(ex:manchesterattack,manchester) that are posted about the manchester attack from 22may. Can anyone provide me a code to co

Solution 1:

What you are talking about is web-scrapping.

There are a couple of ways to achieve that:

  1. Twitter API - simplest
  2. Use scrapping tools like beautifulsoup, selenium etc.

Please do some research about the same. Cheers.

Post a Comment for "How To Collect Tweets About An Event That Are Posted On Specific Date Using Python?"