kumistatus/tweet.py
Klaus-Uwe Mitterer 659096aace That's the tweeter
2016-03-16 13:59:09 +01:00

9 lines
132 B
Python
Executable file

#!/usr/bin/env python3
import twitools
if __name__ == "__main__":
two = twitools.twObject()
text = input("> ")
two.tweet(text)