项目作者: alemar11

项目描述 :
Manga Downloader
高级语言: Python
项目地址: git://github.com/alemar11/mangapy.git
创建时间: 2019-12-11T14:10:48Z
项目社区:https://github.com/alemar11/mangapy

开源协议:MIT License

下载


mangapy

Manga downloader supporting the following sources:

  • fanfox.net

Installation

  1. pipx install mangapy

Usage

Terminal

Mangapy let you download manga chapters as images (default) or pdfs.
Use ‘mangapy -h’ to get a list of all the availabe options.

Downloads all Bleach chatpers as images inside the Downloads folder (from Fanfox source).

  1. mangapy title bleach -a -o ~/Downloads

Downloads all Bleach chatpers as a single .pdf file inside the Downloads folder (from Fanfox source).

  1. mangapy title bleach -a -o ~/Downloads --pdf

Downloads Bleach chatper 1 as images inside the Downloads folder (from Fanfox source).

  1. mangapy title bleach -c 1 -o ~/Downloads

Downloads Bleach chatpers from 0 to 10 (included) as images inside the Downloads folder using Fanfox as source.

  1. mangapy title bleach -c 0-10 -o ~/Downloads -s fanfox

You may need a proxy to download certain manga, to do so use the option -p or —proxy:
Downloads the last One Piece chapter as images inside the Downloads folder (from Fanfox source) using the proxy during the search.

  1. mangapy title "one piece" -o ~/Downloads -p '{"http": "194.226.34.132:8888", "https": "194.226.34.132:8888"}'

YAML

Mangapy let you download multiple manga chapters as images (default) or pdfs from a .yaml file.
For every manga you can choose:

  • source (fanfox)
  • whether or not save the manga as a single pdf
  • which chapter to download (single, range, all, last)
  1. mangapy yaml PATH_TO_YOUR_YAML_FILE
  1. ---
  2. debug: true # optional
  3. output: "~/Downloads/mangapy"
  4. proxy: # optional
  5. http: "http://31.14.131.70:8080"
  6. https: "http://31.14.131.70:8080"
  7. fanfox:
  8. - title: "bleach"
  9. pdf: true
  10. download_single_chapter: "10"
  11. - title: "naruto"
  12. pdf: true
  13. download_chapters: "10-13"
  14. - title: "black clover"
  15. download_all_chapters: True
  16. pdf: true