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