mirror of
https://github.com/hect0x7/JMComic-Crawler-Python.git
synced 2025-09-26 22:31:30 +08:00
18 lines
370 B
Python
18 lines
370 B
Python
from jmcomic import *
|
||
|
||
def get_option():
|
||
option = create_option('../assets/config/workflow_option.yml')
|
||
return option
|
||
|
||
|
||
# 下方填入你要下载的本子的id,一行一个。
|
||
# 每行的首尾可以有空白字符
|
||
jm_albums = str_to_list('''
|
||
422866
|
||
|
||
|
||
''')
|
||
|
||
# 调用jmcomic的download_album方法,下载漫画
|
||
download_album(jm_albums, option=get_option())
|