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