8 lines
209 B
Python
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() |