Skip to content

Instantly share code, notes, and snippets.

@dbiesecke
Last active August 29, 2015 14:14
Show Gist options
  • Save dbiesecke/d8af4f395c58575ac0ae to your computer and use it in GitHub Desktop.
Save dbiesecke/d8af4f395c58575ac0ae to your computer and use it in GitHub Desktop.
manga tools

Manga-Downloader

  • Unterstützt nun diverse Deutsche Sites für Scanlations ( Fan-Übersetzte Mangas )

  • mangaunlimited.com

  • mangascouts.org

  • manga-tube.org

  • thrillerbarkcafe.de

  • tokido-scans.blogspot.de

Name DL INFO BETA?
Java GUI International MangaDownloader-v0.1-bundle.zip more more YES!

Hint: Best Tool for downloading with CLI:

  • manga_downloader Example: python manga.py --device=KFHD --useShortName --spaceToken=. <manga>

Hint: Best Tool for Converting:

import re
from mangopi.site.noez import Noez
class WieManga(Noez):
class Chapter(Noez.Chapter):
VOLUME_AND_CHAPTER_FROM_URL_REGEX = re.compile(
'http://www.wiemanga.com/manga/[^/]*/(v(?P<volume>[^/]*)/)?c(?P<chapter>[^/]*)')
#TOTAL_PAGES_FROM_SOURCE_REGEX = re.compile('>(?P<count>\d*)<\/option>')
class Page(Noez.Page):
IMAGE_FROM_SOURCE_REGEX = re.compile('<img src="(?P<link>[^"]*.jpg)[^"]*"')
class Series(Noez.Series):
CHAPTER_FROM_SOURCE_REGEX = re.compile(
#'0077" href="" >.*?<span class="mr6">[^<]*?</span></span>',
'<a href="(?P<url>[^"]*)" title="(?P<title>.*?)"',
re.DOTALL)
#<a href="http://www.wiemanga.com/chapter/Kapitel6/201002/" title="Kapitel 6">Kapitel 6</a>
#re_getChapters = re.compile('<a href="([^"]*)" title="Kapitel (\d*)"')
TEMPLATE_URL = 'http://www.wiemanga.com/manga/{name}.html'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment