11 lines
176 B
Python
Executable file
11 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)
|