From 982d93d8041c564467ff5bcec9ea86522b510ad4 Mon Sep 17 00:00:00 2001 From: Paul-Louis NECH Date: Mon, 18 Nov 2019 12:12:29 +0100 Subject: [PATCH] feat: Tweeper --- .gitignore | 1 + KoozDawa/output/selection.txt | 0 KoozDawa/tweeper.py | 32 ++++++++++++++++++++++++++++++++ 3 files changed, 33 insertions(+) delete mode 100644 KoozDawa/output/selection.txt diff --git a/.gitignore b/.gitignore index c26a768..620b852 100644 --- a/.gitignore +++ b/.gitignore @@ -132,4 +132,5 @@ dmypy.json .idea/ # Outputs +output/*.txt output/ diff --git a/KoozDawa/output/selection.txt b/KoozDawa/output/selection.txt deleted file mode 100644 index e69de29..0000000 --- a/KoozDawa/output/selection.txt +++ /dev/null diff --git a/KoozDawa/tweeper.py b/KoozDawa/tweeper.py index e69de29..a9c6619 100644 --- a/KoozDawa/tweeper.py +++ b/KoozDawa/tweeper.py @@ -0,0 +1,32 @@ +import os + +import tweepy +from didyoumean3.didyoumean import did_you_mean + + +class Tweeper(object): + + def __init__(self): + auth = tweepy.OAuthHandler( + os.environ["ZOO_DAWA_KEY"], + os.environ["ZOO_DAWA_KEY_SECRET"]) + auth.set_access_token( + os.environ["ZOO_DAWA_TOKEN"], + os.environ["ZOO_DAWA_TOKEN_SECRET"]) + self.api = tweepy.API(auth) + + def tweet(self, message): + """Tweets a message after spellchecking it.""" + message = did_you_mean(message) + self.api.update_status(message) + + +def main(): + Tweeper().tweet("tĂȘte daffiche comme la cannelle") + + +# Authenticate to Twitter + + +if __name__ == '__main__': + main() -- libgit2 0.27.0