I am using Twython twitter API to extract tweets. But I am getting 100 tweets only. I want to extract tweets from 10Dec 2013 to 10March 2014. I have mentioned count=1000 in the search function.
The rate limit is 100 I get that. Is there a way to get those tweets between the given period of time without any rate limit.
from twython import Twython
import csv
from dateutil import parser
from dateutil.parser import parse as parse_date
import datetime
from datetime import datetime
import pytz
utc=pytz.UTC
APP_KEY = 'xxxxxxxxxxx'
APP_SECRET = 'xxxxxxxxxxx'
OAUTH_TOKEN = 'xxxxxxxx' # Access Token here
OAUTH_TOKEN_SECRET = 'xxxxxxxxxxx'
t = Twython(app_key=APP_KEY, app_secret=APP_SECRET, oauth_token=OAUTH_TOKEN, oauth_token_secret=OAUTH_TOKEN_SECRET)
search=t.search(q='AAPL', count="1000",since='2013-12-10')
tweets= search['statuses']
for tweet in tweets:
do something