twitools/filters/markov.py.dist
2017-03-08 02:43:00 +01:00

15 lines
326 B
Plaintext

"""
This file allows you to add your own hooks to the markov.py script without
having to mess around with the code.
"""
def textFilter(text):
"""
Code to be executed when a new tweet has been generated.
:param text: Text of the new tweet as String
:return: True if the text may be tweeted, else False
"""
return True