PyComicPackRouMan/main.py
2023-01-09 19:51:17 +08:00

8 lines
209 B
Python

from utils.entity.RouMan import comicEntity
def comics():
for x in range(0,50):
comicEntity.downladsComcis("https://rm01.xyz/books?&page="+str(x))
if __name__ == '__main__':
comics()