Exemplo n.º 1
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 = OtakuWorks()
Exemplo n.º 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()
Exemplo n.º 3
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()
Exemplo n.º 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()
Exemplo n.º 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')
Exemplo n.º 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')
Exemplo n.º 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()
Exemplo n.º 8
0
 def __init__(self):
     App.__init__(self, chapter_func=str)
     self.manga = Animea()
Exemplo n.º 9
0
 def __init__(self):
     App.__init__(self)
     if self.options.category:
         self.data.update({'category': self.options.category})
     self.manga = NekoPost()
Exemplo n.º 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')
Exemplo n.º 11
0
    def __init__(self):
        App.__init__(self, extract_range=False, chapter_func=str)

        self.manga = EcchiManga()
Exemplo n.º 12
0
 def _parse_args(self, parser):
     App._parse_args(self, parser)
Exemplo n.º 13
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')
Exemplo n.º 14
0
 def _filter_chapter(self, data):
     if 'volume' in self.data and data['volume'] != self.data['volume']:
         return True
     return App._filter_chapter(self, data)
Exemplo n.º 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()
Exemplo n.º 16
0
 def _parse_args(self, parser):
     App._parse_args(self, parser)
     parser.add_option('--volume', dest='volume', default='', help='Volume')
Exemplo n.º 17
0
 def __init__(self):
     App.__init__(self, chapter_func=str)
     self.manga = MangaHere()
Exemplo n.º 18
0
 def __init__(self):
     App.__init__(self, chapter_func=str)
     self.manga = StopTazmo()
Exemplo n.º 19
0
 def __init__(self):
     App.__init__(self, chapter_func=str)
     self.manga = DoujinToshokan()
Exemplo n.º 20
0
 def _parse_args(self, parser):
     App._parse_args(self, parser)
     parser.add_option('--volume', dest='volume', default='',
                       help='Volume')
Exemplo n.º 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()
Exemplo n.º 22
0
 def __init__(self):
     App.__init__(self, chapter_func=str)
     self.manga = Animea()
Exemplo n.º 23
0
 def __init__(self):
     App.__init__(self, extract_range=False, chapter_func=str)
     self.manga = Doujins()
Exemplo n.º 24
0
 def __init__(self):
     App.__init__(self)
     if self.options.category:
         self.data.update({'category': self.options.category})
     self.manga = NekoPost()
Exemplo n.º 25
0
 def __init__(self):
     App.__init__(self, chapter_func=str)
     self.manga = MangaHere()
Exemplo n.º 26
0
 def __init__(self):
     App.__init__(self)
     self.manga = BleachExile()
Exemplo n.º 27
0
 def _filter_chapter(self, data):
     if 'volume' in self.data and data['volume'] != self.data['volume']:
         return True
     return App._filter_chapter(self, data)
Exemplo n.º 28
0
 def __init__(self):
     App.__init__(self, extract_range=False, chapter_func=str)
     self.manga = Doujins()
Exemplo n.º 29
0
 def _parse_args(self, parser):
     App._parse_args(self, parser)
Exemplo n.º 30
0
 def __init__(self):
     App.__init__(self, chapter_func=str)
     self.manga = StopTazmo()