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