def popularity(string) | |
tweets = @client.search(string, result_type: 'recent').take(1_000) | |
tweets.length / (tweets.first.created_at - tweets.last.created_at) * 60 | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment