From 368aec222562c588e48d533af65c30a95358b384 Mon Sep 17 00:00:00 2001 From: "octo@swiss" Date: Mon, 22 Aug 2022 23:46:54 +0200 Subject: [PATCH] Add requirements --- MastodonFeedHTML/README.md | 10 +++++++++- MastodonFeedHTML/requirements.txt | 2 ++ 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 MastodonFeedHTML/requirements.txt diff --git a/MastodonFeedHTML/README.md b/MastodonFeedHTML/README.md index c487f51..746f9c0 100644 --- a/MastodonFeedHTML/README.md +++ b/MastodonFeedHTML/README.md @@ -11,4 +11,12 @@ Limit is set to 10 pages by default (200 posts). If you set it to very high (or The program may be useful for archiving your own posts. Protip: you can repost your content on via email with this tool! -_Read `Example.Config.py`, copy it to `Config.py`, and edit it to your needs._ +## Install dependencies + +```sh +pip3 install -r requirements.txt +``` + +## Configuration + +Read `Example.Config.py`, copy it to `Config.py`, and edit it to your needs. diff --git a/MastodonFeedHTML/requirements.txt b/MastodonFeedHTML/requirements.txt new file mode 100644 index 0000000..44e3fd5 --- /dev/null +++ b/MastodonFeedHTML/requirements.txt @@ -0,0 +1,2 @@ +bs4 +urllib3