22 lines
658 B
Python
22 lines
658 B
Python
import os,skip
|
|
from common.Constant import pathStr
|
|
from domain.BaoZi import comicEntity as baoziEntity
|
|
from domain.RouMan import comicEntity as roumanEntity
|
|
|
|
def rouman():
|
|
pathStr.setComicMainAndPath(pathStr.comic_rm)
|
|
skip.roumanskip()
|
|
for x in range(0,52):
|
|
roumanEntity.start("https://rm01.xyz/books?&page="+str(x))
|
|
|
|
def baozi():
|
|
pathStr.setComicMainAndPath(pathStr.comic_bz)
|
|
baoziEntity.oneComic("https://baozimh.org/manga/biaoren-xinmanhua/")
|
|
|
|
def proxy():
|
|
os.environ["http_proxy"] = "http://127.0.0.1:7890"
|
|
os.environ["https_proxy"] = "http://127.0.0.1:7890"
|
|
|
|
if __name__ == '__main__':
|
|
rouman()
|
|
# baozi() |