def __init__(self):
     App.__init__(self, chapter_func=str)
     if self.options.series_id:
         self.data.update({'series_id': int(self.options.series_id)})
     if self.options.chapter_id:
         self.data.update({'chapter_id': int(self.options.chapter_id)})
     self.manga = OtakuWorks()
Beispiel #2
0
 def __init__(self):
     App.__init__(self, chapter_func=str)
     if self.options.series_id:
         self.data.update({'series_id': int(self.options.series_id)})
     if self.options.chapter_id:
         self.data.update({'chapter_id': int(self.options.chapter_id)})
     self.manga = NiceOppai()
 def __init__(self):
     App.__init__(self)
     if self.options.series_id:
         self.data.update({'series_id': int(self.options.series_id)})
     if self.options.chapter_id:
         self.data.update({'chapter_id': int(self.options.chapter_id)})
     self.manga = MangaReader()
Beispiel #4
0
 def __init__(self):
     App.__init__(self)
     if self.options.series_id:
         self.data.update({'series_id': int(self.options.series_id)})
     if self.options.chapter_id:
         self.data.update({'chapter_id': int(self.options.chapter_id)})
     self.manga = MangaReader()
Beispiel #5
0
 def _parse_args(self, parser):
     App._parse_args(self, parser)
     parser.add_option('--series_id',
                       dest='series_id',
                       default='',
                       help='Series ID')
     parser.add_option('--chapter_id',
                       dest='chapter_id',
                       default='',
                       help='Chapter ID')
Beispiel #6
0
 def _parse_args(self, parser):
     App._parse_args(self, parser)
     parser.add_option('--category',
                       dest='category',
                       default='Manga',
                       help='Category e.g. manga, doujin, novel')
Beispiel #7
0
    def __init__(self):
        App.__init__(self, extract_range=False, chapter_func=str)
        self.data.update({'series_prefix': self.series[0]})

        self.manga = MangaAccess()
Beispiel #8
0
 def __init__(self):
     App.__init__(self, chapter_func=str)
     self.manga = Animea()
Beispiel #9
0
 def __init__(self):
     App.__init__(self)
     if self.options.category:
         self.data.update({'category': self.options.category})
     self.manga = NekoPost()
Beispiel #10
0
 def _parse_args(self, parser):
     App._parse_args(self, parser)
     parser.add_option('--category', dest='category', default='Manga',
                       help='Category e.g. manga, doujin, novel')
Beispiel #11
0
    def __init__(self):
        App.__init__(self, extract_range=False, chapter_func=str)

        self.manga = EcchiManga()
Beispiel #12
0
 def _parse_args(self, parser):
     App._parse_args(self, parser)
 def _parse_args(self, parser):
     App._parse_args(self, parser)
     parser.add_option('--series_id', dest='series_id', default='',
                       help='Series ID')
     parser.add_option('--chapter_id', dest='chapter_id', default='',
                       help='Chapter ID')
 def _filter_chapter(self, data):
     if 'volume' in self.data and data['volume'] != self.data['volume']:
         return True
     return App._filter_chapter(self, data)
Beispiel #15
0
 def __init__(self):
     App.__init__(self, chapter_func=str)
     if self.options.volume:
         self.data.update({'volume': int(self.options.volume)})
     self.manga = MangaFox()
 def _parse_args(self, parser):
     App._parse_args(self, parser)
     parser.add_option('--volume', dest='volume', default='', help='Volume')
 def __init__(self):
     App.__init__(self, chapter_func=str)
     self.manga = MangaHere()
Beispiel #18
0
 def __init__(self):
     App.__init__(self, chapter_func=str)
     self.manga = StopTazmo()
Beispiel #19
0
 def __init__(self):
     App.__init__(self, chapter_func=str)
     self.manga = DoujinToshokan()
 def _parse_args(self, parser):
     App._parse_args(self, parser)
     parser.add_option('--volume', dest='volume', default='',
                       help='Volume')
Beispiel #21
0
 def __init__(self):
     App.__init__(self, chapter_func=str)
     if self.options.volume:
         self.data.update({'volume': int(self.options.volume)})
     self.manga = MangaFox()
Beispiel #22
0
 def __init__(self):
     App.__init__(self, chapter_func=str)
     self.manga = Animea()
Beispiel #23
0
 def __init__(self):
     App.__init__(self, extract_range=False, chapter_func=str)
     self.manga = Doujins()
Beispiel #24
0
 def __init__(self):
     App.__init__(self)
     if self.options.category:
         self.data.update({'category': self.options.category})
     self.manga = NekoPost()
 def __init__(self):
     App.__init__(self, chapter_func=str)
     self.manga = MangaHere()
 def __init__(self):
     App.__init__(self)
     self.manga = BleachExile()
 def _filter_chapter(self, data):
     if 'volume' in self.data and data['volume'] != self.data['volume']:
         return True
     return App._filter_chapter(self, data)
Beispiel #28
0
 def __init__(self):
     App.__init__(self, extract_range=False, chapter_func=str)
     self.manga = Doujins()
Beispiel #29
0
 def _parse_args(self, parser):
     App._parse_args(self, parser)
 def __init__(self):
     App.__init__(self, chapter_func=str)
     self.manga = StopTazmo()