mirror of
https://github.com/Radiquum/furaffinity-dl.git
synced 2025-04-05 15:54:38 +00:00
Add option for a seperate meta directory
This commit is contained in:
parent
0f0fe3e6a7
commit
85cd3cdb59
2 changed files with 11 additions and 3 deletions
|
@ -17,7 +17,7 @@ furaffinity-dl has only been tested only on Linux, however it should also work o
|
|||
## Usage
|
||||
|
||||
```
|
||||
usage: furaffinity-dl.py [-h] [--output OUTPUT] [--cookies COOKIES] [--ua UA] [--start START] [--dont-redownload] [--interval INTERVAL] [category] [username]
|
||||
usage: furaffinity-dl.py [-h] [--output OUTPUT] [--cookies COOKIES] [--ua UA] [--start START] [--dont-redownload] [--interval INTERVAL] [--metadir METADIR] [category] [username]
|
||||
|
||||
Downloads the entire gallery/scraps/favorites of a furaffinity user
|
||||
|
||||
|
@ -38,6 +38,8 @@ optional arguments:
|
|||
Don't redownload files that have already been downloaded
|
||||
--interval INTERVAL, -i INTERVAL
|
||||
delay between downloading pages
|
||||
--metadir METADIR, -m METADIR
|
||||
directory to put meta files in
|
||||
|
||||
Examples:
|
||||
python3 furaffinity-dl.py gallery koul
|
||||
|
|
|
@ -32,7 +32,7 @@ parser.add_argument('--ua', '-u', dest='ua', type=str, default='Mozilla/5.0 (Win
|
|||
parser.add_argument('--start', '-s', dest='start', type=str, default=1, help="page number to start from")
|
||||
parser.add_argument('--dont-redownload', '-d', const='dont_redownload', action='store_const', help="Don't redownload files that have already been downloaded")
|
||||
parser.add_argument('--interval', '-i', dest='interval', type=float, default=0, help="delay between downloading pages")
|
||||
|
||||
parser.add_argument('--metadir', '-m', dest='metadir', type=str, default=None, help="directory to put meta files in")
|
||||
|
||||
args = parser.parse_args()
|
||||
if args.username is None:
|
||||
|
@ -43,6 +43,12 @@ if args.username is None:
|
|||
if args.output != '.':
|
||||
os.makedirs(args.output, exist_ok=True)
|
||||
|
||||
if args.metadir == None:
|
||||
args.metadir = args.output
|
||||
else:
|
||||
os.makedirs(args.metadir, exist_ok=True)
|
||||
|
||||
|
||||
# Check validity of category
|
||||
valid_categories = ['gallery', 'favorites', 'scraps']
|
||||
if args.category not in valid_categories:
|
||||
|
@ -152,7 +158,7 @@ def download(path):
|
|||
return True
|
||||
|
||||
# Write a UTF-8 encoded JSON file for metadata
|
||||
with open(os.path.join(args.output, '{}.json'.format(filename)), 'w', encoding='utf-8') as f:
|
||||
with open(os.path.join(args.metadir, '{}.json'.format(filename)), 'w', encoding='utf-8') as f:
|
||||
json.dump(data, f, ensure_ascii=False, indent=4)
|
||||
|
||||
return True
|
||||
|
|
Loading…
Add table
Reference in a new issue