mkv-this/README.md

86 lines
4.3 KiB
Markdown
Raw Normal View History

2020-04-21 02:42:00 +02:00
## disclaimer
2020-04-20 18:02:13 +02:00
2020-04-26 23:06:15 +02:00
`mkv-this` makes some of the features of the excellent [markovify](https://github.com/jsvine/markovify) module available as a command line tool. i started on it because i wanted to process my own offline files the same way [fedibooks](https://fedibooks.com) processes mastodon toots. then i published it to share with friends. i'm a novice coder, so you are a programmer and felt like picking it up and improving on it, then by all means!
2020-04-20 18:02:13 +02:00
the rest of these notes are for end users rather than programmers.
2020-04-20 18:02:13 +02:00
2020-04-19 19:57:13 +02:00
## mkv-this
2020-04-26 23:06:15 +02:00
`mkv-this` is a script that outputs a bunch of bot-like sentences based on a bank of text that you feed it, either from a local text file, a URL or a directory, and saves the results to another text file. if you run it again with the same output file, new results are appended after old ones.
2020-04-19 19:57:13 +02:00
both commands allow you to add a second file or URL to the input, so you can combine your secret diary with some vile shit from the webz.
2020-04-19 19:57:13 +02:00
2020-04-21 02:42:00 +02:00
### installing
2020-04-19 19:57:13 +02:00
install it with `pip`, the python package manager:
`python3 -m pip install mkv-this`
or
`pip install mkv-this`
2020-04-24 18:37:16 +02:00
to do this you need `python3` and `pip`. install them through your system's package manager. on debian (+ derivatives), for example, you'd run:
2020-04-19 19:57:13 +02:00
`sudo apt install python3 python3-pip`
2020-04-24 18:37:16 +02:00
`markovify` is a dependency, but should install along with `mkv-this`.
2020-04-19 19:57:13 +02:00
2020-04-24 18:37:16 +02:00
if you get sth like `ModuleNotFound error: No module named '$modulename'`, just run `pip install $modulename` to get the missing module.
2020-04-19 19:57:13 +02:00
2020-04-21 02:42:00 +02:00
### options
2020-04-19 19:57:13 +02:00
2020-04-24 18:37:16 +02:00
the script implements a number of the basic `markovify` options, so you can specify:
2020-04-19 19:57:13 +02:00
* how many sentences to output (default = 5; NB: if your input does not use initial capitals, each 'sentence' will be more like a paragraph).
2020-04-24 18:37:16 +02:00
* the state size, i.e. the number of preceding words to be used in calculating the choice of the next word (default = 2).
* a maximum sentence length, in characters.
2020-04-24 18:37:16 +02:00
* the amount of (verbatim) overlap allowed between input and output.
* if your text's sentences end with newlines rather than full-stops. handy for inputting poetry.
2020-04-26 23:06:15 +02:00
* an additional file or URL to use for text input. if you want to feed a stack of files into your bank, use `mkv-this-dir` (see below).
* the relative weight to give to the second file/URL if used.
2020-04-19 19:57:13 +02:00
run `mkv-this -h` to see how to use these options.
2020-04-26 23:06:15 +02:00
### directories
2020-04-26 23:06:15 +02:00
`mkv-this` accepts a directory as input. it will read all text files in it and use them as a single input.
2020-04-19 19:57:13 +02:00
2020-04-26 23:06:15 +02:00
if for some reason you want to concatenate your files yourself, you can easily do so from the command line, then process the resulting file:
2020-04-19 19:57:13 +02:00
* copy all your text files into a directory
* cd into the directory
* run `cat * > outputfile.txt`
2020-04-26 23:06:15 +02:00
* run mkv-this on the file: `mkv-this outputfile.txt`
2020-04-19 19:57:13 +02:00
2020-04-21 02:42:00 +02:00
### file types
2020-04-19 19:57:13 +02:00
you need to input plain text files. currently accepted file extensions are `.txt`, `.org` and `.md`. it is trivial to add others, so if you want one included just ask.
if you don't have text files, but odt files, use a tool like `odt2txt` or `unoconv` to convert them to text en masse. both are available in the repos.
2020-04-21 02:42:00 +02:00
### for best results
2020-04-19 19:57:13 +02:00
feed `mkv-this` large-ish amounts of well punctuated text. it works best if you bulk replace/remove as much mess as possible (code, timestamps, HTML, links, metadata, stars, bullets, lines, tables, etc.), unless you want mashed versions of those things in your output. (no need to clean up the webpages you input though!)
2020-04-19 19:57:13 +02:00
youll probably want to edit or select things from the output. it doesn't rly output print-ready boilerplate bosh, although many bots are happily publishing its output directly.
2020-04-19 19:57:13 +02:00
for a few further tips, see https://github.com/jsvine/markovify#basic-usage.
happy zaning.
2020-04-24 18:37:16 +02:00
### macos
2020-04-25 00:51:32 +02:00
it `seems` to run on macos.
2020-04-24 18:37:16 +02:00
2020-04-25 00:51:32 +02:00
you may already have python installed. if not, install [homebrew](https://brew.sh/#install), edit your PATH so that it works, then install `python3` with `brew install python3`. if you are already running an old version of `homebrew` you might need to run `brew install python3 && brew postinstall python3` to get `python3` and `pip` running right.
2020-04-24 18:37:16 +02:00
i know nothing about macs so if you ask me for help i'll just send you random copypasta from the interwebs.
### todo
* hook it up to a web-scraper.
* hook it up to pdfs.
* option to also append input model to a saved JSON file. (i.e. `text_model.to_json()`, `markovify.Text.from_json()`). that way you could build up a bank over time.
2020-04-24 18:37:16 +02:00
* learn how to programme.