Skip to content
This repository has been archived by the owner on Dec 23, 2023. It is now read-only.

Commit

Permalink
hello world
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianMitchL committed Mar 13, 2015
1 parent 4b48535 commit c24200a
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions weatherBot.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

import tweepy

CONSUMER_KEY = '...'
CONSUMER_SECRET = '...'
ACCESS_KEY = '...'
ACCESS_SECRET = '...'
auth = tweepy.OAuthHandler(CONSUMER_KEY, CONSUMER_SECRET)
auth.set_access_token(ACCESS_KEY, ACCESS_SECRET)
api = tweepy.API(auth)

api.update_status(status="Hello World!")

0 comments on commit c24200a

Please sign in to comment.