xuzhengyi1995 / Renta_Downloader

Download manga you rent from http://renta.papy.co.jp/
50 stars 16 forks source link

About the file name #4

Closed ker0r0 closed 4 years ago

ker0r0 commented 4 years ago

Awesome tool and it works perfectly. Well, is it possible to change the file name to three digits, such as starting 001 instead of starting 1?

xuzhengyi1995 commented 4 years ago

Thank you for like the script. Yes it's possible, I have modified the program, you can just update it or just change the line 302 as follow:

Before:

    with open(imgdir + '/%d.jpg' % page, "wb") as f:

After:

    with open(imgdir + '/%03d.jpg' % page, "wb") as f:
ker0r0 commented 4 years ago

Got you. Thank you so much for your quick reply.