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:
Twitter API
- simplest- 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?"