twitools/markov.py
Klaus-Uwe Mitterer c6eba11d71 Markov bot
2017-02-15 19:09:48 +01:00

17 lines
445 B
Python
Executable file
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/usr/bin/env python3
import dbtools, twitools
import argparse, markovify, operator, random, re, sys
def getText(db = dbtools.dbHelper()):
return '\n'.join(db.executeQuery("SELECT text FROM tweets;"))
def markovify(text):
return markovify.Text(text).make_short_sentence(130).replace("@", "@")
def tweet(text, ref = 0, two = twitools.twObject()):
return two.tweet(text, ref).id
if __name__ == "__main__":
tweet(markovify(getText()))