From b4650ba39b821e90cbfceac7666e23ed1b7b506e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Balbi?= Date: Tue, 3 Jan 2023 09:41:09 -0300 Subject: [PATCH 1/3] Editing README.md --- README.md | 28 ++++++++++++++++++++-------- 1 file changed, 20 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 177b638..9adbdac 100644 --- a/README.md +++ b/README.md @@ -6,18 +6,30 @@ Every other package used is included in Python 3.8+ -#### Available filter list +### Usage +This program works in two separate ways, the automatic mode and the manual mode. The automatic requires the insertion of the thread URL, while the manual requires the insertion of the thread link (mandatory) and the download path, respectively. +**Auto mode** +
+This is the default mode, and it is the easiest to use. Just run the program with the thread link and download_path. The program will automatically download the files in the thread, according to your filters. +
+`$ python Fscrapper.py ` -### Usage +**Manual mode** - ``` -### Optional features +
+Make sure to use the `-m` flag to enable the manual mode. Followed by the thread link and the download path. +
+Using manual mode, you may decide (or not) to insert minimum and maximum resolution filters for the downloaded files. +
+```bash +python Fscrapper.py -m thread_link download_path --min-res x y --max-res x y +``` -### Disclaimer - -### Example +> More implementations are planned for the future, they will expand the difference between the two modes. +### Disclaimer +This program is intended for educational purposes only. I am not responsible for any misuse of this program. -###### v1.2 - CLI options - stable. +###### v2.0 - Flow refactoring From 014429a29d4b6b189e2f11d01ee0b1418e52042d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Balbi?= Date: Tue, 3 Jan 2023 10:02:25 -0300 Subject: [PATCH 2/3] Editing README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9adbdac..a3aa54e 100644 --- a/README.md +++ b/README.md @@ -17,14 +17,14 @@ This is the default mode, and it is the easiest to use. Just run the program wit `$ python Fscrapper.py ` **Manual mode** -
Make sure to use the `-m` flag to enable the manual mode. Followed by the thread link and the download path.
Using manual mode, you may decide (or not) to insert minimum and maximum resolution filters for the downloaded files.
+ ```bash -python Fscrapper.py -m thread_link download_path --min-res x y --max-res x y +$ python Fscrapper.py -m thread_link download_path --min-res x y --max-res x y ``` > More implementations are planned for the future, they will expand the difference between the two modes. From cf172a8ed116ec4c7c3d6dafba3b7c9679d4e82e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Balbi?= Date: Tue, 3 Jan 2023 10:03:27 -0300 Subject: [PATCH 3/3] Editing README.md --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a3aa54e..045c4b9 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,9 @@ This program works in two separate ways, the automatic mode and the manual mode.
This is the default mode, and it is the easiest to use. Just run the program with the thread link and download_path. The program will automatically download the files in the thread, according to your filters.
-`$ python Fscrapper.py ` +```commandline +python Fscrapper.py thread_link download_path +``` **Manual mode**
@@ -23,8 +25,8 @@ Make sure to use the `-m` flag to enable the manual mode. Followed by the thread Using manual mode, you may decide (or not) to insert minimum and maximum resolution filters for the downloaded files.
-```bash -$ python Fscrapper.py -m thread_link download_path --min-res x y --max-res x y +```commandline +python Fscrapper.py -m thread_link download_path --min-res x y --max-res x y ``` > More implementations are planned for the future, they will expand the difference between the two modes.