Skip to content

Latest commit

 

History

History

ja

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

Twitter API クライアント

シンプルで使いやすい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

クイックスタート

Python

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ファイルをご覧ください