Skip to content

Instantly share code, notes, and snippets.

@theeluwin
Created March 15, 2015 11:50
Show Gist options
  • Save theeluwin/0d3820a106fb54663c31 to your computer and use it in GitHub Desktop.
Save theeluwin/0d3820a106fb54663c31 to your computer and use it in GitHub Desktop.
코딩 전력 60분 13일의 금요일
# -*- coding: utf-8 -*-
# https://twitter.com/Code_60/status/577062012250796032
import tweepy
API_KEY = 'YOUR_APP_KEY_HERE'
API_SECRET = 'YOU_APP_SECRET_HERE'
auth = tweepy.OAuthHandler(API_KEY, API_SECRET)
api = tweepy.API(auth)
# answer code was in https://twitter.com/__ditto/status/577065727217156097
answer_from_twitter = api.get_status(id='577065727217156097').text
exec(answer_from_twitter)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment