twitools/filters/markov.py.dist

15 lines
326 B
Plaintext
Raw Normal View History

2017-03-08 01:43:00 +00:00
"""
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