mirror of
https://github.com/Radiquum/furaffinity-dl.git
synced 2025-04-05 15:54:38 +00:00
chore: update README.md usage
This commit is contained in:
parent
94df41eb44
commit
8921fd52d7
2 changed files with 12 additions and 10 deletions
|
@ -182,7 +182,7 @@ parser.add_argument(
|
||||||
"--dry",
|
"--dry",
|
||||||
dest="dry_run",
|
dest="dry_run",
|
||||||
action="store_true",
|
action="store_true",
|
||||||
help="disable multithreading download",
|
help="dry run (don't create folders and don't download files)",
|
||||||
)
|
)
|
||||||
|
|
||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
|
|
14
README.md
14
README.md
|
@ -22,9 +22,9 @@ When downloading a folder make sure to put everything after **/folder/**, for ex
|
||||||
|
|
||||||
```help
|
```help
|
||||||
|
|
||||||
usage: furaffinity-dl.py [-h] [--cookies COOKIES] [--output OUTPUT_FOLDER] [--check] [--user-agent USER_AGENT] [--submissions] [--folder FOLDER] [--start START]
|
usage: furaffinity-dl.py [-h] [--cookies COOKIES] [--output OUTPUT_FOLDER] [--check] [--user-agent USER_AGENT] [--submissions] [--folder FOLDER] [--start START] [--stop STOP]
|
||||||
[--stop STOP] [--redownload] [--interval INTERVAL] [--rating] [--filter] [--metadata] [--download DOWNLOAD] [--json-description] [--login]
|
[--redownload] [--interval INTERVAL] [--rating] [--filter] [--metadata] [--download DOWNLOAD] [--json-description] [--html-description] [--login]
|
||||||
[--index]
|
[--index] [--real-category] [--request-compress] [--check-file-size] [--disable-threading] [--num-threads NUM_THREADS] [--dry-run]
|
||||||
[username] [category]
|
[username] [category]
|
||||||
|
|
||||||
Downloads the entire gallery/scraps/folder/favorites of a furaffinity user, or your submissions notifications
|
Downloads the entire gallery/scraps/folder/favorites of a furaffinity user, or your submissions notifications
|
||||||
|
@ -54,17 +54,19 @@ options:
|
||||||
--filter enable submission filter
|
--filter enable submission filter
|
||||||
--metadata, -m enable metadata saving
|
--metadata, -m enable metadata saving
|
||||||
--download DOWNLOAD download a specific submission by providing its id
|
--download DOWNLOAD download a specific submission by providing its id
|
||||||
--html-description, -hd
|
|
||||||
download description as original html format, this won't work if json-description is enabled
|
|
||||||
--json-description, -jd
|
--json-description, -jd
|
||||||
download description as a JSON list
|
download description as a JSON list
|
||||||
--html-description, -hd
|
--html-description, -hd
|
||||||
download description as original html format, this won't work if json-description is enabled
|
download description as original html format, this won't work if json-description is enabled
|
||||||
--login extract furaffinity cookies directly from your browser
|
--login extract furaffinity cookies directly from your browser
|
||||||
--index create an index of downloaded files in an output folder
|
--index create an index of downloaded files in an output folder
|
||||||
--real-category this will download to its real category sub folder. it's useful when download favorites to avoid duplicate files
|
--real-category this will download to the sub folder of its real category. it's useful when download favorites to avoid duplicate files
|
||||||
--request-compress enable request compress which may save some bandwidth, but less file can be check by content-length. Since images won't be compress by default, it won't take much side effect to disable it by default
|
--request-compress enable request compress which may save some bandwidth, but less file can be check by content-length. Since images won't be compress by default, it won't take much side effect to disable it by default
|
||||||
--check-file-size check all files size when download, this will skip build-in archive
|
--check-file-size check all files size when download, this will skip build-in archive
|
||||||
|
--disable-threading disable multithreading download
|
||||||
|
--num-threads NUM_THREADS, -t NUM_THREADS
|
||||||
|
how many threads will be used for parallel download [default: 3]
|
||||||
|
--dry-run, --dry dry run (don't create folders and don't download files)
|
||||||
|
|
||||||
Examples:
|
Examples:
|
||||||
python3 furaffinity-dl.py koul -> will download gallery of user koul
|
python3 furaffinity-dl.py koul -> will download gallery of user koul
|
||||||
|
|
Loading…
Add table
Reference in a new issue