From e5d413994cb23564abc9c42bf0ce2cc762222a6c Mon Sep 17 00:00:00 2001 From: Navan Chauhan Date: Sun, 26 May 2019 18:17:49 +0530 Subject: Created python folder --- pythonProgram/function-specific-programs/tweet.py | 43 +++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 pythonProgram/function-specific-programs/tweet.py (limited to 'pythonProgram/function-specific-programs/tweet.py') diff --git a/pythonProgram/function-specific-programs/tweet.py b/pythonProgram/function-specific-programs/tweet.py new file mode 100644 index 0000000..9903edd --- /dev/null +++ b/pythonProgram/function-specific-programs/tweet.py @@ -0,0 +1,43 @@ +""" +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() -- cgit v1.2.3