aboutsummaryrefslogtreecommitdiff
path: root/function-specific-programs/tweet.py
diff options
context:
space:
mode:
authorNavan Chauhan <navanchauhan@gmail.com>2019-05-26 18:18:28 +0530
committerNavan Chauhan <navanchauhan@gmail.com>2019-05-26 18:18:28 +0530
commit5d4e27dc0776fd04d8a67dfd0f8cd9a51cbec4cc (patch)
treeeabdc4f68a54d4c8af5cf5b0a80605236ec74ee6 /function-specific-programs/tweet.py
parente5d413994cb23564abc9c42bf0ce2cc762222a6c (diff)
Created Python Folder
Diffstat (limited to 'function-specific-programs/tweet.py')
-rw-r--r--function-specific-programs/tweet.py43
1 files changed, 0 insertions, 43 deletions
diff --git a/function-specific-programs/tweet.py b/function-specific-programs/tweet.py
deleted file mode 100644
index 9903edd..0000000
--- a/function-specific-programs/tweet.py
+++ /dev/null
@@ -1,43 +0,0 @@
-"""
-import tweepy
-
-#twitter application credentials
-consumer_key="addYours"
-consumer_secret="addYours"
-
-#twitter user credentials
-access_token="AddYours"
-access_token_secret="AddYours"
-
-auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
-auth.set_access_token(access_token, access_token_secret)
-
-tweepyapi = tweepy.API(auth)
-
-tweepyapi.update_status('Hello World!')
-print("Hello " + tweepyapi.me().name)
-"""
-
-import tweepy
-
-def get_api(cfg):
- auth = tweepy.OAuthHandler(cfg['consumer_key'], cfg['consumer_secret'])
- auth.set_access_token(cfg['access_token'], cfg['access_token_secret'])
- return tweepy.API(auth)
-
-def main():
- # Fill in the values noted in previous step here
- cfg = {
- "consumer_key" : consumer_key,
- "consumer_secret" : consumer_secret,
- "access_token" : access_token,
- "access_token_secret" : access_token_secret
- }
-
- api = get_api(cfg)
- tweet = "Hello, world!"
- status = api.update_status(status=tweet)
- # Yes, tweet is called 'status' rather confusing
-
-if __name__ == "__main__":
- main()