mirror of
https://github.com/RicterZ/nhentai.git
synced 2025-04-20 11:01:17 +02:00
download ids from file
This commit is contained in:
parent
50be89db44
commit
f6fb90aab5
@ -29,6 +29,11 @@ Download specified doujinshi:
|
|||||||
nhentai --id=123855,123866
|
nhentai --id=123855,123866
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Download doujinshi with ids specified in a file:
|
||||||
|
```bash
|
||||||
|
nhentai --file=doujinshi.txt
|
||||||
|
```
|
||||||
|
|
||||||
Search a keyword and download the first page:
|
Search a keyword and download the first page:
|
||||||
```bash
|
```bash
|
||||||
nhentai --search="tomori" --page=1 --download
|
nhentai --search="tomori" --page=1 --download
|
||||||
|
5
doujinshi.txt
Normal file
5
doujinshi.txt
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
184212
|
||||||
|
204944
|
||||||
|
222460
|
||||||
|
244502
|
||||||
|
261909
|
@ -37,6 +37,7 @@ def banner():
|
|||||||
def cmd_parser():
|
def cmd_parser():
|
||||||
parser = OptionParser('\n nhentai --search [keyword] --download'
|
parser = OptionParser('\n nhentai --search [keyword] --download'
|
||||||
'\n NHENTAI=http://h.loli.club nhentai --id [ID ...]'
|
'\n NHENTAI=http://h.loli.club nhentai --id [ID ...]'
|
||||||
|
'\n nhentai --file [filename]'
|
||||||
'\n\nEnvironment Variable:\n'
|
'\n\nEnvironment Variable:\n'
|
||||||
' NHENTAI nhentai mirror url')
|
' NHENTAI nhentai mirror url')
|
||||||
parser.add_option('--download', dest='is_download', action='store_true',
|
parser.add_option('--download', dest='is_download', action='store_true',
|
||||||
@ -70,6 +71,7 @@ def cmd_parser():
|
|||||||
help='Generate Comic Book CBZ File')
|
help='Generate Comic Book CBZ File')
|
||||||
parser.add_option('--rm-origin-dir', dest='rm_origin_dir', action='store_true', default=False,
|
parser.add_option('--rm-origin-dir', dest='rm_origin_dir', action='store_true', default=False,
|
||||||
help='Remove downloaded doujinshi dir when generated CBZ file.')
|
help='Remove downloaded doujinshi dir when generated CBZ file.')
|
||||||
|
parser.add_option('--file', '-f', type='string', dest='file', action='store', help='Read gallery IDs from file.')
|
||||||
|
|
||||||
try:
|
try:
|
||||||
sys.argv = list(map(lambda x: unicode(x.decode(sys.stdin.encoding)), sys.argv))
|
sys.argv = list(map(lambda x: unicode(x.decode(sys.stdin.encoding)), sys.argv))
|
||||||
@ -98,6 +100,11 @@ def cmd_parser():
|
|||||||
_ = map(lambda id: id.strip(), args.id.split(','))
|
_ = map(lambda id: id.strip(), args.id.split(','))
|
||||||
args.id = set(map(int, filter(lambda id_: id_.isdigit(), _)))
|
args.id = set(map(int, filter(lambda id_: id_.isdigit(), _)))
|
||||||
|
|
||||||
|
if args.file:
|
||||||
|
with open(args.file, 'r') as f:
|
||||||
|
_ = map(lambda id: id.strip(), f.readlines())
|
||||||
|
args.id = set(map(int, filter(lambda id_: id_.isdigit(), _)))
|
||||||
|
|
||||||
if (args.is_download or args.is_show) and not args.id and not args.keyword and \
|
if (args.is_download or args.is_show) and not args.id and not args.keyword and \
|
||||||
not args.login and not args.tag:
|
not args.login and not args.tag:
|
||||||
logger.critical('Doujinshi id(s) are required for downloading')
|
logger.critical('Doujinshi id(s) are required for downloading')
|
||||||
|
Loading…
x
Reference in New Issue
Block a user