Skip to content
forked from tdhopper/tau

A simple tweetbot that generates content with Markov chains

License

Notifications You must be signed in to change notification settings

tmkuba/markovBot

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

markovBot is a simple Twitter bot that will generate a sentence using Markov chains and then tweet it.

Follow @_murakamibot and @jamesjoycebot to see it in action!

Getting Started

Dependencies

Install the markovify and tweepy packages:

pip install markovify

pip install tweepy

Fill corpus of example text

This project comes with a copy of Charles Dickens's A Tale of Two Cities as its example corpus.

Lots of good sources are available from Project Gutenberg.

Save the text file as corpus.txt

Test Markov chain

python tweet.py to see an example tweet.

Connecting Twitter

Create a Twitter account.

Sign in to the Apps page and get four pieces of data:

  • Consumer Key
  • Consumer Secret
  • Access Token
  • Access Token Secret

Run

make credentials_file

And edit the twitter_credentials.json file with the above four pieces of data.

Change the PUBLISH variable in tweet.py from False to True to have the bot post to Twitter.

Deploy to AWS Lambda (Optional)

Steps for setting up auto-tweet account (using OS X or Linux):

  1. Add PyPI dependencies to requirements.txt.
  2. Run make prepare to generate lambda_bundle.zip.
  3. In the AWS console, create a Python 2.7 function with tweet.send_tweet as the handler. Upload lambda_bundle.zip to use as the code. Add a "Scheduled Event" event source.

About

A simple tweetbot that generates content with Markov chains

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 76.5%
  • Makefile 23.5%