- Python 99.6%
- Shell 0.4%
| generators | ||
| third_party | ||
| .editorconfig | ||
| .gitignore | ||
| config.defaults.json | ||
| fetch_posts.py | ||
| gen.py | ||
| LICENSE-AGPL.md | ||
| LICENSE-MPL | ||
| poetry.lock | ||
| pyproject.toml | ||
| README.md | ||
| reply.py | ||
| run.sh | ||
| schema.sql | ||
| utils.py | ||
limebooks
this is a modified version of https://codeberg.org/smitten/pleroma-ebooks which is modified from https://codeberg.org/autumn/pleroma-ebooks which is modified from https://github.com/ioistired/pleroma-ebooks which is modified from https://github.com/Lynnesbian/mstdn-ebooks which is modified from https://github.com/Jess3Jane/mastodon-ebooks
autumn's changes:
- removes any generated @'s in replies to prevent accidentally mentioning somebody else on the same instance
smitten's changes:
- adjusts CW filtering to be word-based regexp instead of exact match
nelle's changes:
- make summary always null (for shrimpnet) {NOTE: this means Content Warnings are not injested at all, it will train off of CW's}
- switch to poetry
- add bsky crossposting support
- remove annoying stacktrace post
- MFM posting
How to Use
- Create your bot account on the server.
- Follow the user(s) you want to base the model on.
- Get an access token for your bot. See mastodon-bot for details.
- Copy
config.defaults.jsontoconfig.jsonand set asaccess_token. Make any other config tweaks you'd like. - (optional) set
bskky-accountandbsky-passwordto crosspost to bluesky. - run
poetry install - Run
poetry run fetch_posts.pyto collect the posts from the followed user(s). - Run
poetry run gen.pyto generate the sentence and write it to the server. - (optional) set up cron or other periodic auto-run. run
poetry run reply.pyin the background.
Secure Fetch
Secure fetch (aka authorised fetches, authenticated fetches, secure mode...) is not supported by limebooks, and will fail to download any posts from users on instances with secure fetch enabled. For more information, see this wiki page.
Compatibility
| Software | Downloading statuses | Posting | Replying |
|---|---|---|---|
| Mastodon | Yes | Yes | Yes |
| Pleroma | Yes | Yes | Yes |
| Misskey | Yes | No | No |
| Iceshrimp.NET* | Yes | Yes | Yes |
| diaspora | No | No | No |
| BlueSky | No | Yes | No |
| Others | Maybe | Maybe | Maybe |
*Iceshrimp.NET currently requires a patch from https://iceshrimp.dev/iceshrimp/Iceshrimp.NET/pulls/120 (https://iceshrimp.dev/limepotato/purgatory/src/branch/outbox/patches/kopper-outbox.patch)
Note: Bots are only supported on Mastodon api compatible and Pleroma instances. Bots can learn from users on other instances, but the bot itself must run on either a Mastodon api compatible or Pleroma instance.
limebooks uses ActivityPub to download posts. This means that it is not dependant on any particular server software, and should work with anything that (properly) implements ActivityPub. Any software that does not support ActivityPub (e.g. diaspora*) is not supported, and won't work.
Configuration
Configuring limebooks is accomplished by editing config.json. If you want to use a different file for configuration, specify it with the --cfg argument. For example, if you want to use /home/user/c.json instead, you would run poetry run fetch_posts.py --cfg /home/user/c.json instead of just poetry run fetch_posts.py
| Setting | Default | Meaning |
|---|---|---|
| site | https://your.instance | The instance your bot will log in to and post from. This must start with https:// or http:// (preferably the latter) |
| cw | null | The content warning (aka subject) limebooks will apply to non-error posts. |
| learn_from_cw | false | If true, limebooks will learn from CW'd posts. |
| ignored_cws | [] | If learn_from_cw is true, do not learn from posts with these CW words. matches case-insensitive and by word. |
| mention_handling | 1 | 0: Never use mentions. 1: Only generate fake mentions in the middle of posts, never at the start. 2: Use mentions as normal (old behaviour). |
| max_thread_length | 15 | The maximum number of bot posts in a thread before it stops replying. A thread can be 10 or 10000 posts long, but the bot will stop after it has posted max_thread_length times. |
| strip_paired_punctuation | false | If true, limebooks will remove punctuation that commonly appears in pairs, like " and (). This avoids the issue of posts that open a bracket (or quote) without closing it. |
| limit_length | false | If true, the sentence word length will be random between length_lower_limit and length_upper_limit |
| length_lower_limit | 5 | The lower bound in the random number range above. Only matters if limit_length is true. |
| length_upper_limit | 50 | The upper bound in the random number range above. Can be the same as length_lower_limit to disable randomness. Only matters if limit_length is true. |
| overlap_ratio_enabled | false | If true, checks the output's similarity to the original posts. |
| overlap_ratio | 0.7 | The ratio that determins if the output is too similar to original or not. With decreasing ratio, both the interestingness of the output and the likelihood of failing to create output increases. Only matters if overlap_ratio_enabled is true. |
| bsky-account | your_handle.bsky.social | your bluesky handle, if its set to default, no post will be made to bsky and everything will operate normally. |
| bsky-password | your_APPpassword | your bluesky password, if its set to default, no post will be made to bsky and everything will operate normally. |
| mfm-frequency | 0.0 | how frequent to post mfm (percentage 1 = 100%), default is 0, so it wont post mfm at all. |
| mfm-list | [] | list of mfm tags to be used by the bot when posting mfm. example: ["x2", "flip"] |
Donating
Please don't feel obligated to donate at all.
-
Lynnesbian's Ko-Fi allows you to make one-off payments in increments of AU$3. These payments are not taxed.
-
Lynnesbian's PayPal allows you to make one-off payments of any amount in a range of currencies. These payments may be taxed.
License
This is released under the AGPLv3 (only) license, and based on Lynnesbian's fork which is under the MPL 2.0 license. See LICENSE-AGPL.md and LICENSE-MPL for details.
This means you must publish the source code of any ebooks bot you make with this. A link back to this repository on your bot's profile page or profile metadata will suffice. If you make changes to the code you need to link to your fork/repo instead.