markovish

Crates.iomarkovish
lib.rsmarkovish
version0.2.1
sourcesrc
created_at2024-02-24 22:11:10.75341
updated_at2024-10-07 19:19:08.396474
descriptionSimple Markov chain implementation for text generation
homepage
repositoryhttps://github.com/ginger51011/markovish/
max_upload_size
id1151954
size61,255
Emil Eriksson (ginger51011)

documentation

README

⛓️markovish💬

Dead simple Markov chain text generation

Static Badge Crates.io (markovish) GitHub License GitHub Actions Workflow Status docs.rs

Super simple (and fast) Markov chains in Rust.

use markovish::Chain;

let fortune = r#"
This is a test of the Emergency Broadcast System.  If this had been an
actual emergency, do you really think we'd stick around to tell you?
"#;

let chain = Chain::from_text(fortune).unwrap();
let new_fortune = chain.generate_str(&mut rand::thread_rng(), 300);

This project is mostly for my personal use in pandoras_pot, but PRs and issues are welcome.

This crate is aimed to be very simple, and the current aim is to do the following well:

  1. Take some input text.
  2. Parse it.
  3. Generate an infinite string of new text using that.

More information about usage and the like can be found in the crate docs and in the examples.

If you want to save a chain, you can enable the serde feature and serialize it.

Support

I do not accept any donations. If you however find any software I write for fun useful, please consider donating to an efficient charity that save or improve lives the most per $CURRENCY.

GiveWell.org is an excellent website that can help you donate to the world's most efficient charities. Alternatives listing the current best charities for helping our planet is Founders Pledge, and for animal welfare Animal Charity Evaluators.

  • Residents of Sweden can do tax-deductable donations to GiveWell via Ge Effektivt
  • Residents of Norway can do the same via Gi Effektivt

This list is not exhaustive; your country may have an equivalent.

Commit count: 30

cargo fmt