diff --git a/README.md b/README.md index 55a1ebc..20dfb82 100644 --- a/README.md +++ b/README.md @@ -3,11 +3,13 @@ This is designed to download manga's direct from ether - [manhuaes.com](https://manhuaes.com/) - [manhuaaz.com](https://manhuaaz.com/) - [manhuaus.com](https://manhuaus.com/) +- [manhuaus.org](https://manhuaus.org/) - [mangaread.org](https://mangaread.org/) - [kaiscans.com](https://kaiscans.com/) - [mangakaklot.com](https://mangakakalot.com/) - [webtoons.com](https://webtoons.com/) - [lhtranslation.net](https://lhtranslation.net/) +- [topmanhua.com](https://topmanhua.com) ## Usage diff --git a/manga_dl.py b/manga_dl.py index e339dfc..4f78453 100644 --- a/manga_dl.py +++ b/manga_dl.py @@ -65,7 +65,13 @@ def get_website_class(url: str): """Return the class for the website based on the URL.""" if "manhuaes.com" in url or "manhuaaz.com" in url: return MadraOld(log) - elif "manhuaus.com" in url or "mangaread.org" in url or "lhtranslation.net" in url: + elif ( + "manhuaus.com" in url + or "manhuaus.org" in url + or "mangaread.org" in url + or "lhtranslation.net" in url + or "topmanhua.com" in url + ): return MadraNew(log) elif "webtoons.com" in url: return Webtoons(log)