0
, 트위터 API는 트윗 나이가 10 일보다하지 않은 제공 발견하기 쉽다 짹짹이받은 19!Tweepy api.search, 10 일보다 오래된 트윗을 얻는 방법?</p> <p><a href="http://i.stack.imgur.com/UrlZT.png" rel="nofollow">screenshot</a></p> <p>오늘 9 월 29 일, 마지막 : 당신이 "때까지"옵션을 검색 문구를 추가하는 경우
예제 코드 :
api = tw_oauth('./auth.k')
def limit_handled(cursor):
while True:
try:
yield cursor.next()
except tweepy.RateLimitError:
time.sleep(15 * 60)
for tweet in limit_handled(tweepy.Cursor(api.search, q='python until:2016-09-20', count = 20).items()):
print (tweet.id, tweet.created_at)
어떻게받을 수 있나요 십일보다 오래된 트윗? 당신이 트윗 스파는 많이 필요로하는 경우
예를 들어, (일일 한도보다 더 많은, 그리고 수 있습니다 당신은 프로세스를 중단해야합니다).
[이전 짹짹 트위티가 파이썬을 사용하여] 가능한 복제본 (http://stackoverflow.com/questions/37017903/older-tweets-tweepy-using-python) – Efferalgan