Counting Tweets
Closed this issue · 1 comments
StrazzaD commented
Hi uclatommy,
compliments for this project, it's awesome.
Is there some function to count the tweets analyzed?
Thx,
Marco
uclatommy commented
You can find the number of tweets in the db (and therefore being analyzed) like so:
len(trump_feels._feels.all)
Or you can find the number of tweets between certain dates like so:
len(trump_feels._feels.tweets_between(start, end).df)
where start and end are datetimes
s