Add option for a seperate meta directory

This commit is contained in:
Xerbo 2020-09-23 14:38:43 +01:00
parent 0f0fe3e6a7
commit 85cd3cdb59
2 changed files with 11 additions and 3 deletions

View file

@ -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

View file

@ -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:
@ -42,6 +42,12 @@ if args.username is None:
# Create output directory if it doesn't exist
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']
@ -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