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()