kumistatus/tweet.py
2016-03-18 21:09:50 +01:00

12 lines
176 B
Python
Executable file

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