Skip to content

Instantly share code, notes, and snippets.

@pandanote-info
Created October 18, 2018 22:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pandanote-info/9c23a875e69a45931675919ee4905da4 to your computer and use it in GitHub Desktop.
Save pandanote-info/9c23a875e69a45931675919ee4905da4 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python3
import os
from twitter import *
import json
consumer_key_file = "consumer_key_file.json"
CONSUMER_KEY = ""
CONSUMER_SECRET=""
with open(consumer_key_file) as infile:
text = infile.read()
keypair = json.loads(text)
#consumer key, consumer secret key from https://apps.twitter.com/
CONSUMER_KEY = keypair["consumer_key"]
CONSUMER_SECRET= keypair["consumer_key_secret"]
MY_TWITTER_CREDS = "pandanote_publisher_credentials.txt"
if not os.path.exists(MY_TWITTER_CREDS):
oauth_dance("Pandanote publisher", CONSUMER_KEY, CONSUMER_SECRET, MY_TWITTER_CREDS)
oauth_token, oauth_secret = read_token_file(MY_TWITTER_CREDS)
twitter = Twitter(auth=OAuth(oauth_token, oauth_secret, CONSUMER_KEY, CONSUMER_SECRET))
twitter.statuses.update(status="panda大学習帳外伝の更新情報も流してみることにしました。https://sidestory.pandanote.info/")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment