Post tweets (with one photo) in your command line!
pip install tweepy
- Post tweets(with images)
- Delete tweets
- Show time line
- Like tweets
- Reply tweets
- Send Direct message
- Reply Direct message
- And more...
- This application does not provide existing twitter api, you need to apply manually.
- After you successfully applied Twitter API v1 access, please follow the prompts in the application output to create a configuration file.
- Application might read tweets and profile information, read and post direct messages. So you need to choose Read and write and Direct message in App permissions settings.
Use the following commands to get command help:
python main.py -h
Uncomment these lines and replace with your own.
# Proxy settings(optional)
import os
os.environ["http_proxy"] = "http_proxy"
os.environ["https_proxy"] = "http_proxy"
# Proxy settings end