├── .gitignore ├── Manager.py ├── README.md └── Scrapers ├── Batoto.py ├── Crawler.py ├── DynastyReader.py ├── KissManga.py └── __init__.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | 3 | -------------------------------------------------------------------------------- /Manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klaxa/batotocrawler/HEAD/Manager.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klaxa/batotocrawler/HEAD/README.md -------------------------------------------------------------------------------- /Scrapers/Batoto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klaxa/batotocrawler/HEAD/Scrapers/Batoto.py -------------------------------------------------------------------------------- /Scrapers/Crawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klaxa/batotocrawler/HEAD/Scrapers/Crawler.py -------------------------------------------------------------------------------- /Scrapers/DynastyReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klaxa/batotocrawler/HEAD/Scrapers/DynastyReader.py -------------------------------------------------------------------------------- /Scrapers/KissManga.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klaxa/batotocrawler/HEAD/Scrapers/KissManga.py -------------------------------------------------------------------------------- /Scrapers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klaxa/batotocrawler/HEAD/Scrapers/__init__.py --------------------------------------------------------------------------------