Metadata-Version: 2.1
Name: getjump
Version: 0.1
Summary: Get and save images from jump web viewer
Home-page: https://github.com/eggplants/getjump
Author: eggplants
License: MIT
Platform: UNKNOWN
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# jumpget

Get and save images from jump web viewer.

## Library

```python
from getjump import GetJump as gj

next_uri = "https://shonenjumpplus.com/episode/13932016480028799982.json"
while next_uri:
    next_uri, prev_title = g.get(next_uri, overwrite=False)
    print("saved:", prev_title)
    print("next:", next_uri)
```

## CLI

```shellsession
$ jget -h
usage: jget [-h] [-d SAVEDIR] [-o] [-b] url

Get images from jump web viewer

positional arguments:
  url                   target url (ex: https://shonenjumpplus.com/episode/***.json)

optional arguments:
  -h, --help            show this help message and exit
  -d SAVEDIR, --savedir SAVEDIR
                        directory to save downloaded images
  -o, --overwrite       overwrite or not
  -b, --bulk            download in bulk or not
$ jget https://shonenjumpplus.com/episode/13932016480028799982.json
saved: ./阿波連さんははかれない/[1話]阿波連さんははかれない
```


