Upload container image to AWS as per [https://realpython.com/twitter-bot-python-tweepy/#deploying-bots-to-a-server-using-docker]
Load your twitter API keys into keys.json under /app
- A status is a tweet.
- A friendship is a follow-follower relationship.
- A favorite is a like.
Some sample methods used in this project
-
Method for user timelines
api.home_timeline()
-
Method for new tweets
api.update_status(<string>)
-
Method for users
api.get_user(<user>)
Stream listener is used to listen for keywords, anywhere on twitter.