Add note about folder downloading, close #60

This commit is contained in:
Xerbo 2021-07-20 18:49:10 +01:00
parent c7fef621f0
commit 29636db1e7
No known key found for this signature in database
GPG key ID: 34103F6D8F11CEB0
2 changed files with 6 additions and 2 deletions

View file

@ -16,14 +16,18 @@ furaffinity-dl has only been tested only on Linux, however it should also work o
## Usage ## Usage
When downloading a folder make sure to put everything after **/folder/**, for example 123456/Folder-Name-Here instead of just 123456 (ref [#60](https://github.com/Xerbo/furaffinity-dl/issues/60)).
``` ```
usage: furaffinity-dl.py [-h] [--output OUTPUT] [--cookies COOKIES] [--ua UA] [--start START] [--dont-redownload] [--interval INTERVAL] [--metadir METADIR] [category] [username] usage: furaffinity-dl.py [-h] [--output OUTPUT] [--cookies COOKIES] [--ua UA] [--start START] [--dont-redownload] [--interval INTERVAL] [--metadir METADIR]
[category] [username] [folder]
Downloads the entire gallery/scraps/favorites of a furaffinity user Downloads the entire gallery/scraps/favorites of a furaffinity user
positional arguments: positional arguments:
category the category to download, gallery/scraps/favorites category the category to download, gallery/scraps/favorites
username username of the furaffinity user username username of the furaffinity user
folder name of the folder (full path, for instance 123456/Folder-Name-Here)
optional arguments: optional arguments:
-h, --help show this help message and exit -h, --help show this help message and exit

View file

@ -26,7 +26,7 @@ DISCLAIMER: It is your own responsibility to check whether batch downloading is
''') ''')
parser.add_argument('category', metavar='category', type=str, nargs='?', default='gallery', help='the category to download, gallery/scraps/favorites') parser.add_argument('category', metavar='category', type=str, nargs='?', default='gallery', help='the category to download, gallery/scraps/favorites')
parser.add_argument('username', metavar='username', type=str, nargs='?', help='username of the furaffinity user') parser.add_argument('username', metavar='username', type=str, nargs='?', help='username of the furaffinity user')
parser.add_argument('folder', metavar='folder', type=str, nargs='?', help='name of the folder') parser.add_argument('folder', metavar='folder', type=str, nargs='?', help='name of the folder (full path, for instance 123456/Folder-Name-Here)')
parser.add_argument('--output', '-o', dest='output', type=str, default='.', help="output directory") parser.add_argument('--output', '-o', dest='output', type=str, default='.', help="output directory")
parser.add_argument('--cookies', '-c', dest='cookies', type=str, default='', help="path to a NetScape cookies file") parser.add_argument('--cookies', '-c', dest='cookies', type=str, default='', help="path to a NetScape cookies file")
parser.add_argument('--ua', '-u', dest='ua', type=str, default='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:68.7) Gecko/20100101 Firefox/68.7', help="Your browser's useragent, may be required, depending on your luck") parser.add_argument('--ua', '-u', dest='ua', type=str, default='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:68.7) Gecko/20100101 Firefox/68.7', help="Your browser's useragent, may be required, depending on your luck")