├── .dockerignore ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── __pycache__ ├── main.cpython-312.pyc └── test_main.cpython-312-pytest-8.2.2.pyc ├── compose.yaml ├── main.py ├── render.yaml ├── requirements.txt ├── src ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-312.pyc │ ├── asurascans.cpython-312.pyc │ ├── flamescans.cpython-312.pyc │ ├── manganato.cpython-312.pyc │ ├── mangapark.cpython-312.pyc │ ├── mangapill.cpython-312.pyc │ ├── mangareader.cpython-312.pyc │ ├── mangaworld.cpython-312.pyc │ └── scanvf.cpython-312.pyc ├── asurascans.py ├── flamescans.py ├── manganato.py ├── mangapark.py ├── mangapill.py ├── mangareader.py ├── mangaworld.py └── scanvf.py └── vercel.json /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/real-zephex/manga-scrapers/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/real-zephex/manga-scrapers/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/real-zephex/manga-scrapers/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/real-zephex/manga-scrapers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/real-zephex/manga-scrapers/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/main.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/real-zephex/manga-scrapers/HEAD/__pycache__/main.cpython-312.pyc -------------------------------------------------------------------------------- /__pycache__/test_main.cpython-312-pytest-8.2.2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/real-zephex/manga-scrapers/HEAD/__pycache__/test_main.cpython-312-pytest-8.2.2.pyc -------------------------------------------------------------------------------- /compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/real-zephex/manga-scrapers/HEAD/compose.yaml -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/real-zephex/manga-scrapers/HEAD/main.py -------------------------------------------------------------------------------- /render.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/real-zephex/manga-scrapers/HEAD/render.yaml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/real-zephex/manga-scrapers/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/real-zephex/manga-scrapers/HEAD/src/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /src/__pycache__/asurascans.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/real-zephex/manga-scrapers/HEAD/src/__pycache__/asurascans.cpython-312.pyc -------------------------------------------------------------------------------- /src/__pycache__/flamescans.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/real-zephex/manga-scrapers/HEAD/src/__pycache__/flamescans.cpython-312.pyc -------------------------------------------------------------------------------- /src/__pycache__/manganato.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/real-zephex/manga-scrapers/HEAD/src/__pycache__/manganato.cpython-312.pyc -------------------------------------------------------------------------------- /src/__pycache__/mangapark.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/real-zephex/manga-scrapers/HEAD/src/__pycache__/mangapark.cpython-312.pyc -------------------------------------------------------------------------------- /src/__pycache__/mangapill.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/real-zephex/manga-scrapers/HEAD/src/__pycache__/mangapill.cpython-312.pyc -------------------------------------------------------------------------------- /src/__pycache__/mangareader.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/real-zephex/manga-scrapers/HEAD/src/__pycache__/mangareader.cpython-312.pyc -------------------------------------------------------------------------------- /src/__pycache__/mangaworld.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/real-zephex/manga-scrapers/HEAD/src/__pycache__/mangaworld.cpython-312.pyc -------------------------------------------------------------------------------- /src/__pycache__/scanvf.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/real-zephex/manga-scrapers/HEAD/src/__pycache__/scanvf.cpython-312.pyc -------------------------------------------------------------------------------- /src/asurascans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/real-zephex/manga-scrapers/HEAD/src/asurascans.py -------------------------------------------------------------------------------- /src/flamescans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/real-zephex/manga-scrapers/HEAD/src/flamescans.py -------------------------------------------------------------------------------- /src/manganato.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/real-zephex/manga-scrapers/HEAD/src/manganato.py -------------------------------------------------------------------------------- /src/mangapark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/real-zephex/manga-scrapers/HEAD/src/mangapark.py -------------------------------------------------------------------------------- /src/mangapill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/real-zephex/manga-scrapers/HEAD/src/mangapill.py -------------------------------------------------------------------------------- /src/mangareader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/real-zephex/manga-scrapers/HEAD/src/mangareader.py -------------------------------------------------------------------------------- /src/mangaworld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/real-zephex/manga-scrapers/HEAD/src/mangaworld.py -------------------------------------------------------------------------------- /src/scanvf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/real-zephex/manga-scrapers/HEAD/src/scanvf.py -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/real-zephex/manga-scrapers/HEAD/vercel.json --------------------------------------------------------------------------------