x0rz / tweets_analyzer

Tweets metadata scraper & activity analyzer
GNU General Public License v3.0
2.94k stars 454 forks source link

Multiple Users analysis #36

Closed antongiac closed 6 years ago

antongiac commented 6 years ago

Hello, I was wondering whether is possible to analyse multiple users with a single run. Thanks for the great script

ozzi- commented 6 years ago

Judging by the code, this is not possible. You could use something like this: run.sh ozzi_____ antongiac Snowden etc and more

#!/bin/sh
for nick in "$@"
do
  echo "Tweet Analyzer running for: $nick"
  ./tweets_analyzer.py --name $nick
done
x0rz commented 6 years ago

Because of Twitter API limits (see https://developer.twitter.com/en/docs/basics/rate-limiting.html) I'd rather not implement such feature at the moment