Metadata-Version: 2.1
Name: mloader
Version: 1.0.2
Summary: Command-line tool to download manga chapters from mangaplus
Home-page: https://github.com/hurlenko/mloader
License: GPLv3
Project-URL: Source, https://github.com/hurlenko/mloader
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: Implementation :: CPython
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: certifi (==2019.11.28)
Requires-Dist: chardet (==3.0.4)
Requires-Dist: Click (==7.0)
Requires-Dist: idna (==2.8)
Requires-Dist: protobuf (==3.11.3)
Requires-Dist: requests (==2.22.0)
Requires-Dist: six (==1.14.0)
Requires-Dist: urllib3 (==1.25.8)

# Mangaplus Downloader

[![Latest Github release](https://img.shields.io/github/tag/hurlenko/mloader.svg)](https://github.com/hurlenko/mloader/releases/latest)
![Python](https://img.shields.io/badge/python-v3.6+-blue.svg)
![License](https://img.shields.io/badge/license-GPLv3-blue.svg)

## **mloader** - download manga chapters from mangaplus.shueisha.co.jp

## 🚩 Table of Contents

- [Installation](#-installation)
- [Usage](#-usage)
- [Command line interface](#%EF%B8%8F-command-line-interface)

## 💾 Installation

The recommended installation method is using `pip`:

```bash
pip install mloader
```

After installation, the `mloader` command will be available. Check the [command line](%EF%B8%8F-command-line-interface) section for supported commands.

## 📙 Usage

Copy the url or the id of the chapter you want to download and pass it to `mloader`. Urls have form mangaplus.shueisha.co.jp/viewer/**[chapter_id_here]**.

Note that title downloads (title id's have form `[website]/title/[title_id]`) are not supported but you can pass multiple urls/chapter id's.

Chapters can be saved as `CBZ` archives (default) or separate images by passing the `raw` parameter.

## 🖥️ Command line interface

Currently `mloader` supports these commands

```bash
Usage: mloader [OPTIONS] [CHAPTERS]...

Options:
  -o, --out <directory>  Save directory (not a file)  [default:
                         mangaplus_downloads]
  -r, --raw              Save raw images  [default: False]
  --help                 Show this message and exit.
```

