5 releases (stable)

1.0.3 Apr 11, 2019
1.0.2 Apr 6, 2019
1.0.1 Mar 30, 2019
0.1.0 Mar 4, 2019

#12 in #markov-chain

MIT license

3MB
69K SLoC

seinbot-rs

Crates.io twitter

A seinfeld twitter bot using aws lambda functions and markov chains in rust.

Introduction

tweet-example

Example tweet from frank costanza

I've always wanted to make a robot that contributes to the heat death of the universe through asinine tweets. This is the result!

Primarily for learning purposes, the intent of this project was to see how easy it would be to:

  1. Use markov chains to generate pseudo random text based on the hit TV series Seinfeld.
  2. Publish generated content to the internet.
  3. Automate content generation and publishing so it would occur on a daily basis.
  4. ... and do it all in Rust!

Results

Thankfully, there were a number of well-documented Rust libraries that made implemention of this project quite simple. Using AWS Lambda functions and the serverless application framework for Rust, it was trivial to deploy and configure the code to run periodically:

service: daily-tweet
provider:
  name: aws
  runtime: rust
...
functions:
  seinbot:
    handler: seinbot-rs
    events:
      - schedule: rate(24 hours)

Snippet from serverless.yml (used to deploy to AWS)

Whilst the bot mostly produces nonsensical output, it can sometimes construct something quite amusing (see above tweet). Overall, I am quite happy with final product and would like to thank the following projects that made it so:

  • seinfeld-scripts: For providing the database of seinfeld content used in the markov chain.
  • markov: For providing a Rust implementation of markov chains.
  • egg_mode: For providing the library used to interact with Twitter's API.
  • aws-lambda-rust-runtime: For providing the library used to implement an AWS Lambda function in Rust.
  • serverless-rust: For providing the framework used to configure, test, and deploy the bot.

Dependencies

~21–33MB
~532K SLoC