Downloads

Usage

python MangaseeDL.py MANGA_NAME [CHAPTER_START [CHAPTER_END]]

Examples:

If nothing other than MANGA_NAME is provided, the script tries to download all chapters.

python MangaseeDL.py "One Piece"
python MangaseeDL.py "one piece"
python MangaseeDL.py one-piece

Note that MANGA_NAME is case-insensitive, and spaces could be replaced with hyphens.

If only CHAPTER_START is provided, that chapter is downloaded. The following commands will all download chapter 10 of the manga One Piece:

python MangaseeDL.py "One Piece" 10
python MangaseeDL.py one-piece 10
python MangaseeDL.py One-Piece 10

If CHAPTER_START and CHAPTER_END are both provided, the script tries to download CHAPTER_START to CHAPTER_END. The following commands will all download chapters 10 through 20 of the manga Diamond is Unbreakable:

python MangaseeDL.py "Daomond is Unbreakable" 10 20
python MangaseeDL.py "diamond is unbreakable" 10 20
python MangaseeDL.py diamond-is-unbreakable 10 20

Notes:

  • You can find the manga name through searching on mangasee123.com and finding out the index name. For example, if you search for JoJo’s Bizarre Adventure – Part 4 – Diamond Is Unbreakable, you’ll end up here: . So the name you should enter is Diamond-Is-Unbreakable (case-insensitive).