gromenauer

Results 47 comments of gromenauer

@DonaldTsang 1. Only know of manga-py, and now two more. If I see another, I let you know. 2. Out of my league. 3. If you create a repository with...

Could you give more info? Examples (This links works for me): Component | Value ---|--- OS | Ubuntu 16.04.6 LTS Python version | Python 3.5.2 Pip version | pip 18.1...

Ooops! I thought that I was answering in another repo, sorry.

Hi, thanks for the interest :smile: Not much keyboard time (free time) lately. I have this pending, will try to look at it.

Maybe you could do like `youtube-dl` parameter `--print-json`: ~~~ --print-json Be quiet and print the video information as JSON (video is still being downloaded). ~~~ In your case you could...

For me `--print-json` should suppress all normal output and replace with something like: ~~~ json { "site": "https://www.readmng.com/kumo-desu-ga-nani-ka", "downloader": "https://github.com/yuru-yuri/manga-dl", "version": "1.1.4", "cmd": "manga-py --cbz https://www.readmng.com/kumo-desu-ga-nani-ka", "return_code": 0, "volumes": [...

The output have to be only json to avoid confusing external programs that will use it. If this is too much work other alternative is to write it to a...

`--print-json` it's working in my setup. Minor details: * delta ~~~ json "delta": null, ~~~ It's something like: str(`end` - `start`) * name ~~~ json "volumes": [ { "name": "http://mangalife.us/read-online/Boku-No-Heya-Ga-Dungeon-No-Kyuukeijo-Ni-Natteshimatta-Ken-chapter-1-page-1.html",...

Is viable a API in 2.x? Have you thought what functionalities want to expose? (Want ideas?)

I was thinking in the youtube-dl aproximation: https://github.com/rg3/youtube-dl/blob/master/README.md#embedding-youtube-dl ~~~ python import youtube_dl ydl_opts = {} with youtube_dl.YoutubeDL(ydl_opts) as ydl: ydl.download(['https://www.youtube.com/watch?v=BaW_jenozKc']) ~~~ Then you could script your downloads: ~~~ python import...