Skip to content

Instantly share code, notes, and snippets.

@Kagee
Created June 13, 2013 15:33
Show Gist options
  • Save Kagee/5774666 to your computer and use it in GitHub Desktop.
Save Kagee/5774666 to your computer and use it in GitHub Desktop.
hildenae@offle:~/tmp/twitter$ cat kopweb.py
from twitter import *
#oauth_dance("My App Name", CONSUMER_KEY, CONSUMER_SECRET, MY_TWITTER_CREDS)
oauth_token="###############"
oauth_secret="##############"
CONSUMER_KEY="#############"
CONSUMER_SECRET="###########"
# = read_token_file(MY_TWITTER_CREDS)
t = Twitter(auth=OAuth(oauth_token, oauth_secret, CONSUMER_KEY, CONSUMER_SECRET))
a=t.statuses.user_timeline(screen_name="gregersn", count=1)
print a
hildenae@offle:~/tmp/twitter$ python kopweb.py
[{u'contributors': None, u'truncated': False, u'text': u'Det er visst ikke mulig \xe5 fylle vannflasken sin p\xe5 #osl #Gardermoen', u'in_reply_to_status_id': None, u'id': 345178013899554817L, u'favorite_count': 0, u'source': u'<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>', u'retweeted': False, u'coordinates': None, u'entities': {u'symbols': [], u'user_mentions': [], u'hashtags': [{u'indices': [51, 55], u'text': u'osl'}, {u'indices': [56, 67], u'text': u'Gardermoen'}], u'urls': []}, u'in_reply_to_screen_name': None, u'id_str': u'345178013899554817', u'retweet_count': 0, u'in_reply_to_user_id': None, u'favorited': False, u'user': {u'follow_request_sent': False, u'profile_use_background_image': True, u'default_profile_image': False, u'id': 20976805, u'verified': False, u'profile_text_color': u'666666', u'profile_image_url_https': u'https://si0.twimg.com/profile_images/3323467270/3e549e141bbc14c40ee7623a67fb91bc_normal.jpeg', u'profile_sidebar_fill_color': u'252429', u'entities': {u'url': {u'urls': [{u'url': u'http://t.co/DZSGcSBu7U', u'indices': [0, 22], u'expanded_url': u'http://gregerstoltnilsen.net', u'display_url': u'gregerstoltnilsen.net'}]}, u'description': {u'urls': []}}, u'followers_count': 605, u'profile_sidebar_border_color': u'181A1E', u'id_str': u'20976805', u'profile_background_color': u'1A1B1F', u'listed_count': 12, u'profile_background_image_url_https': u'https://si0.twimg.com/images/themes/theme9/bg.gif', u'utc_offset': 3600, u'statuses_count': 11666, u'description': u'Norway based artist and photographer.\r\nFond of chaos', u'friends_count': 969, u'location': u'N\xf8tter\xf8y / Oslo', u'profile_link_color': u'2FC2EF', u'profile_image_url': u'http://a0.twimg.com/profile_images/3323467270/3e549e141bbc14c40ee7623a67fb91bc_normal.jpeg', u'following': None, u'geo_enabled': True, u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/20976805/1353580560', u'profile_background_image_url': u'http://a0.twimg.com/images/themes/theme9/bg.gif', u'screen_name': u'gregersn', u'lang': u'en', u'profile_background_tile': False, u'favourites_count': 74, u'name': u'Greger Stolt Nilsen', u'notifications': None, u'url': u'http://t.co/DZSGcSBu7U', u'created_at': u'Mon Feb 16 10:59:30 +0000 2009', u'contributors_enabled': False, u'time_zone': u'Stockholm', u'protected': False, u'default_profile': False, u'is_translator': False}, u'geo': None, u'in_reply_to_user_id_str': None, u'lang': u'no', u'created_at': u'Thu Jun 13 13:57:06 +0000 2013', u'in_reply_to_status_id_str': None, u'place': None}]
hildenae@offle:~/tmp/twitter$
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment