8 lines
132 B
Python
Executable file
8 lines
132 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
import twitools
|
|
|
|
if __name__ == "__main__":
|
|
two = twitools.twObject()
|
|
text = input("> ")
|
|
two.tweet(text)
|