Saving my Titles

Blissom April 3, 2021 12:04 pm

Hey... I have like 500+ logged. Does anyone know how to export my lists?

Responses
    bunxbon April 3, 2021 12:06 pm

    I searched all over but they don't offer that here!! I wish they did though. I just manually copied the titles to an Excel lmao it's time consuming but still worth it

    Nova April 3, 2021 12:06 pm

    quick python code:
    for i in range(20):
    with open(f"{i}.html", "w+") as f:
    f.write(get(" http://www.mangago.zone/home/people/265580/manga/2/?page="+str(i)).content)

    Change 265580 to your user id in the page with the list this iterates over the pages and saves them to files

    Nova April 3, 2021 12:07 pm
    quick python code:for i in range(20): with open(f"{i}.html", "w+") as f: f.write(get("http://www.mangago.me/home/people/265580/manga/2/?page="+str(i)).content)Change 265580 to your user id in the page... Nova

    I forgot run "from requests import get" before

    Blissom April 3, 2021 12:12 pm
    I forgot run "from requests import get" before Nova

    how do i use the code haha

    Nova April 3, 2021 12:14 pm
    how do i use the code haha Blissom

    Haha you need to have python installed on your computer
    You can also just go one by one and right click on the page and do "Save As" and then save it then go through all the pages and you can list the titles later

    aanimeloverr29 April 3, 2021 12:48 pm
    I forgot run "from requests import get" before Nova

    before or after th code? i really want to make a list and am getting errors in this code?