シンプルで使いやすいTwitterデータ取得APIクライアント。複数言語のSDKをサポートしています。
- ユーザー情報の取得
/twitter/user/info
- フォロワーリストの取得
/twitter/user/followers
- フォローリストの取得
/twitter/user/followings
- メンションの取得
/twitter/user/mentions
- ユーザーツイートの取得
/twitter/user/last_tweets
- リプライの取得
/twitter/tweet/replies
- 引用の取得
/twitter/tweet/quotes
- リツイートユーザーの取得
/twitter/tweet/retweeters
- 高度な検索
/twitter/tweet/advanced_search
- リストツイートの取得
/twitter/list/tweets
from twitter_api_client import TwitterAPIClient
client = TwitterAPIClient('your_api_key')
# ユーザー情報の取得
user = client.get_user_info('elonmusk')
print(user)
# ツイートの検索
tweets = client.search_tweets('python programming')
for tweet in tweets['tweets']:
print(tweet['text'])
その他のコード例はこちら:
ドキュメントは以下の言語で利用可能です:
このプロジェクトはMITライセンスの下で公開されています - 詳細はLICENSEファイルをご覧ください