From b70f1e6cd6fb2e564c88d440ae7eb04ec05068d5 Mon Sep 17 00:00:00 2001 From: simon Date: Wed, 24 Mar 2021 15:09:30 +0700 Subject: [PATCH] added requirements.txt for easy pip install --- README.md | 2 ++ requirements.txt | 2 ++ 2 files changed, 4 insertions(+) create mode 100644 requirements.txt diff --git a/README.md b/README.md index f666253..84dc5cb 100644 --- a/README.md +++ b/README.md @@ -42,6 +42,8 @@ Install required none standard Python libraries: * On Arch: `sudo pacman -S python-beautifulsoup4` * Via Pip: `pip install beautifulsoup4` +or use `pip` to install the requirements: +`pip install -r requirements.txt` ## Run Make sure the `config` file is setup correctly, see bellow. diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..1f3e778 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,2 @@ +beautifulsoup4 +requests