Python Tweepy 자동화 사용 가능
Python Tweepy 자동화 사용 가능
주의 사항
좋은 수면은 횟수 제한이 있어요.
소문이라면 다음과 같은 횟수이므로 API 실행에 유의하시기 바랍니다
1분 30회 좋아요→3일 제한
1시간 200회 좋아요→1시간 제한.
하루에 400번이 좋아요→24시간 제한.
2021/01/24 업데이트
하루에 400번 이상 자면 3일 제한
24시간 제한이 아닐 수도 있어요.
Tweepy 오류에 다음 정보가 표시됩니다.[{'code': 283, 'message': "This request looks like it might be automated. To protect our users from spam and other malicious activity, we can't complete this action right now. Please try again later."}]
트위터
착한 돈의 처리
Pythhon 스크립트 참조 검색여기.
키워드 검색의 결과를 순환하여 TweetID를 지정하여 실행할 수 있음create_favorite
api.create_favorite(id=row.tweet_id)
주안점
계속 좋은 상태를 유지하려면 어떤 트위터의 내용을 잘 관리해야 하는가
키워드 검색의 최종 TweetID(since id)를 미리 획득하여 DB, 파일 등에 저장since_id = search[0:1]["tweet_id"]
예: BigQuery에 저장
검색 중인 since -ID를 지정하면 지난번에 올린 트위터 이후의 내용을 검색할 수 있습니다. 최신 Tweet만 있으면 됩니다.tweets = api.search(
q=q,
count=count,
tweet_mode="extended",
locale="ja",
lang="ja",
include_entities=False,
max_id=str(last_id - 1),
since_id=str(since_id),
)
Reference
이 문제에 관하여(Python Tweepy 자동화 사용 가능), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/morita-toyscreation/items/69cdefaf59b8e76b8acc
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
[{'code': 283, 'message': "This request looks like it might be automated. To protect our users from spam and other malicious activity, we can't complete this action right now. Please try again later."}]
api.create_favorite(id=row.tweet_id)
since_id = search[0:1]["tweet_id"]
tweets = api.search(
q=q,
count=count,
tweet_mode="extended",
locale="ja",
lang="ja",
include_entities=False,
max_id=str(last_id - 1),
since_id=str(since_id),
)
Reference
이 문제에 관하여(Python Tweepy 자동화 사용 가능), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/morita-toyscreation/items/69cdefaf59b8e76b8acc텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)