kumistatus/tweet.py

12 lines
176 B
Python
Raw Normal View History

2016-03-18 20:09:50 +00:00
#!/usr/bin/env python3
import twitools
if __name__ == "__main__":
two = twitools.twObject()
try:
text = input("> ")
except KeyboardInterrupt:
exit(0)
two.tweet(text)