Skip to content

Instantly share code, notes, and snippets.

@kdmgs110
Created July 9, 2017 04:13
Show Gist options
  • Save kdmgs110/3bfe7c060b4e300b1e48b52bcc5e36d1 to your computer and use it in GitHub Desktop.
Save kdmgs110/3bfe7c060b4e300b1e48b52bcc5e36d1 to your computer and use it in GitHub Desktop.
# Tweepyライブラリをインポート
import tweepy
# 各種キーをセット
CONSUMER_KEY = 'xxxxxxxx'
CONSUMER_SECRET = 'xxxxxxxx'
ACCESS_TOKEN = 'xxxxxxxx'
ACCESS_SECRET = 'xxxxxxxx'
auth = tweepy.OAuthHandler(CONSUMER_KEY, CONSUMER_SECRET)
auth.set_access_token(ACCESS_TOKEN, ACCESS_SECRET)
#APIインスタンスを作成
api = tweepy.API(auth)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment