Example #1
0
"""
 # Copyright (c) 08 2015 | surya
 # 05/08/15 [email protected]
 # This program is free software; you can redistribute it and/or
 # modify it under the terms of the GNU General Public License
 # as published by the Free Software Foundation; either version 2
 # of the License, or (at your option) any later version.
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 #
 # You should have received a copy of the GNU General Public License
 # along with this program; if not, write to the Free Software
 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 #  popular.py
"""
from niimanga.ctasks.batoto import build_to_sys
from niimanga.sites.batoto import Batoto


site = Batoto()

try:
    for i, source in enumerate(site.search_popular()):
        # LOG.info(source)
        print(source)
        build_to_sys(site, source)
except Exception as e:
    print(e.message)
Example #2
0
"""
 # Copyright (c) 08 2015 | surya
 # 05/08/15 [email protected]
 # This program is free software; you can redistribute it and/or
 # modify it under the terms of the GNU General Public License
 # as published by the Free Software Foundation; either version 2
 # of the License, or (at your option) any later version.
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 #
 # You should have received a copy of the GNU General Public License
 # along with this program; if not, write to the Free Software
 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 #  popular.py
"""
from niimanga.ctasks.batoto import build_to_sys
from niimanga.sites.batoto import Batoto

site = Batoto()

try:
    for i, source in enumerate(site.search_popular()):
        # LOG.info(source)
        print(source)
        build_to_sys(site, source)
except Exception as e:
    print(e.message)
import json
import logging
from unittest import TestCase, main

from niimanga.sites.batoto import Batoto
from niimanga.ctasks.batoto import build_to_sys


site = Batoto()

LOG = logging.getLogger(__name__)


class SeriesInfo(TestCase):

    def test_normal(self):
        # url = 'http://bato.to/comic/_/comics/shokugeki-no-soma-r7530'
        url = 'http://localhost:8234/High-School%20DxD%20-%20Scanlations%20-%20Comic%20-%20Comic%20Directory%20-%20Batoto%20-%20Batoto.html'
        info = site.series_info(site.fetch_manga_seed_page(url))
        print(json.dumps(info, sort_keys=True, indent=4, separators=(',', ': ')))
        self.assertIsInstance(info, dict)

        # Attributes that can be asserted by exact value:
        expected = {
            'name': 'Shokugeki No Soma',
            'site': 'batoto',
            'thumb_url': 'http://img.bato.to/forums/uploads/effd6e0d6d42602b4c29bb5c1c1ba5e4.jpg',
            'tags': ['comedy', 'doujinshi', 'supernatural', 'tragedy'],
            'authors': ['Makegumi Club (Circle)', 'Matsuri', 'Wasu', 'Zephyr'],
            'status': 'complete',
            }
Example #4
0
"""
 # Copyright (c) 07 2015 | surya
 # 28/07/15 [email protected]
 # This program is free software; you can redistribute it and/or
 # modify it under the terms of the GNU General Public License
 # as published by the Free Software Foundation; either version 2
 # of the License, or (at your option) any later version.
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 #
 # You should have received a copy of the GNU General Public License
 # along with this program; if not, write to the Free Software
 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 #  latests.py
"""
from niimanga.ctasks.batoto import build_to_sys
from niimanga.sites.batoto import Batoto


site = Batoto()

try:
    for i, source in enumerate(site.search_latest()):
        # LOG.info(source)
        print(source)
        build_to_sys(site, source)
except Exception as e:
    print(e.message)