Metadata-Version: 2.5
Name: getjmanga
Version: 0.0.3
Summary: Retrieve and save images from japanese web comic sites
Project-URL: Documentation, https://eggplants.github.io/getjmanga/
Project-URL: Issues, https://github.com/eggplants/getjmanga/issues
Project-URL: Repository, https://github.com/eggplants/getjmanga
Author-email: eggplants <w10776e8w@yahoo.co.jp>
License: MIT
License-File: LICENSE.txt
Keywords: cli,comici,downloader,gigaviewer,japanese,manga,manga-downloader,piccoma,scraping
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Programming Language :: Python :: 3.15
Classifier: Typing :: Typed
Requires-Python: >=3.11
Requires-Dist: beautifulsoup4>=4.12
Requires-Dist: cryptography>=43
Requires-Dist: httpx>=0.28
Requires-Dist: pathvalidate>=3.2
Requires-Dist: pillow>=10.4
Requires-Dist: rich>=13.7
Requires-Dist: tomlkit>=0.13
Requires-Dist: ua-generator>=2
Description-Content-Type: text/markdown

# getjmanga

[![PyPI](
  <https://img.shields.io/pypi/v/getjmanga?color=blue>
  )](
  <https://pypi.org/project/getjmanga/>
) [![CI](
  <https://github.com/eggplants/getjmanga/actions/workflows/ci.yml/badge.svg>
  )](
  <https://github.com/eggplants/getjmanga/actions/workflows/ci.yml>
)

[![ghcr size](
  <https://ghcr-badge.egpl.dev/eggplants/getjmanga/size>
)](
  <https://github.com/eggplants/getjmanga/pkgs/container/getjmanga>
)

Retrieve and save images from japanese web comic sites.

_Note: Redistribution of downloaded image data is prohibited. Please keep it to private use._

## Supported sites

See [docs/SUPPORTED_SITES.md](docs/SUPPORTED_SITES.md).

## Installation

```bash
# mise via github release
mise use -g github:eggplants/getjmanga

# mise via pipx
mise use -g pipx:getjmanga

# pipx
pipx install getjmanga

# pip
pip install getjmanga
```

### Docker

```bash
docker pull ghcr.io/eggplants/getjmanga

docker run --rm -v "$PWD:/work" -w /work \
  ghcr.io/eggplants/getjmanga https://takecomic.jp/episodes/74f33031e13cd
```

## CLI

```shellsession
# one episode
jm https://takecomic.jp/episodes/74f33031e13cd https://piccoma.com/web/viewer/8195/1185884

# episodes in bulk: this one and every next one
jm -b https://shonenjumpplus.com/episode/13932016480028799982

# every previous one too: the whole work from one episode
jm -B https://shonenjumpplus.com/episode/13932016480028799982

# login
jm -u you@example.com https://piccoma.com/web/viewer/8195/1185884

# every link on a page that some extractor takes
jm -s https://shonenjumpplus.com/

# remember the work, then download what is new in every remembered work
jm -S -b https://shonenjumpplus.com/episode/13932016480028799982
jm patrol
```

### Configuration

Use `jm config` / `jm c`.

```shellsession
jm c init

# asks for the username and password
jm c site shonenjumpplus.com
jm c site piccoma

jm c savedir ~/manga
jm c overwrite true
jm c bulk false
jm c both true      # -B by default; turns bulk off, and the other way round
```

### Patrol

`jm -S` remembers what it downloaded as a `[[patrol]]` entry in the config file,
and `jm patrol` / `jm p` goes through them: an episode is followed to the newest
one and the entry moves along to the first episode still locked (so a wait-to-read
episode is tried again next time), a series page is listed again, a `-s` page is
scanned again. Episodes already there are skipped, so only what is new gets
downloaded. `jm patrol` takes the download options (`-d`, `-o`, `-q`, ...) but no url.

```toml
patrol = [
  { url = "https://shonenjumpplus.com/episode/13932016480028799982", title = "SPY×FAMILY" },
  { url = "https://shonenjumpplus.com/", search = true },
  ...
]
```

## Library

```python
from getjmanga import Downloader, find_extractor

url = "https://takecomic.jp/episodes/74f33031e13cd"
extractor = find_extractor(url)()      # -> Comici
result = Downloader(extractor, "out").download(url)
print(result.status, result.save_dir, result.episode.next_url)
```

An extractor on its own reads without writing anything:

```python
from getjmanga import Comici

comici = Comici()
for url in comici.series_urls("https://takecomic.jp/series/b167ea507d35f"):
    episode = comici.episode(url)
    print(episode.episode_title, len(episode.pages), episode.readable)
```

### Writing an extractor

See [docs/ADD_SITE.md](docs/ADD_SITE.md).

## License

[MIT License](
  <https://github.com/eggplants/getjmanga/blob/master/LICENSE.txt>
)
