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:

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

Snippet from the serverless.yml file 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: