{"id":21511469,"url":"https://github.com/tuvimen/mangabuddy-scraper","last_synced_at":"2026-05-19T15:43:45.016Z","repository":{"id":261940812,"uuid":"885778753","full_name":"TUVIMEN/mangabuddy-scraper","owner":"TUVIMEN","description":"A bash script for downloading images and metadata from mangabuddy","archived":false,"fork":false,"pushed_at":"2025-02-26T16:10:43.000Z","size":5494,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-17T15:21:51.103Z","etag":null,"topics":["bash","jq","mangabuddy","reliq","scraper"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/TUVIMEN.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-11-09T11:26:34.000Z","updated_at":"2025-03-04T13:30:43.000Z","dependencies_parsed_at":"2025-02-22T10:22:09.953Z","dependency_job_id":"79bd48b5-311f-4daa-8686-4df608bfaa33","html_url":"https://github.com/TUVIMEN/mangabuddy-scraper","commit_stats":null,"previous_names":["tuvimen/mangabuddy-scraper"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TUVIMEN%2Fmangabuddy-scraper","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TUVIMEN%2Fmangabuddy-scraper/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TUVIMEN%2Fmangabuddy-scraper/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TUVIMEN%2Fmangabuddy-scraper/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TUVIMEN","download_url":"https://codeload.github.com/TUVIMEN/mangabuddy-scraper/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244056432,"owners_count":20390720,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bash","jq","mangabuddy","reliq","scraper"],"created_at":"2024-11-23T22:09:31.397Z","updated_at":"2026-05-19T15:43:45.010Z","avatar_url":"https://github.com/TUVIMEN.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# mangabuddy-scraper\n\nA bash script for downloading images and metadata from mangabuddy.\n\n[example video](https://raw.githubusercontent.com/TUVIMEN/mangabuddy-scraper/refs/heads/master/example.webm)\n\n## Requirements\n\n - [reliq](https://github.com/TUVIMEN/reliq)\n - [jq](https://github.com/jqlang/jq)\n\n## Installation\n\n    install -m 755 mangabuddy-scraper /usr/bin\n\n## Output examples\n\nCan be found in [examples](https://github.com/TUVIMEN/mangabuddy-scraper/tree/master/examples) and were created by running\n\n    mangabuddy-scraper --noimages --full URL1 URL2 URL3\n\n## Usage\n\n    mangabuddy-scraper [OPTIONS]... [URLS]...\n\nDownload images and basic metadata of the chapter, comic, genre, manga list, latest, popular, author, ...\n\n    mangabuddy-scraper 'https://mangabuddy.com/the-zenith/chapter-6'\n    mangabuddy-scraper 'https://mangabuddy.com/the-zenith/'\n    mangabuddy-scraper 'https://mangabuddy.com/genres/shounen'\n    mangabuddy-scraper 'https://mangabuddy.com/manga-list/17158'\n    mangabuddy-scraper 'https://mangabuddy.com/latest'\n    mangabuddy-scraper 'https://mangabuddy.com/popular'\n    mangabuddy-scraper 'https://mangabuddy.com/authors/euja'\n    mangabuddy-scraper 'https://mangabuddy.com/status/Completed'\n    mangabuddy-scraper 'https://mangabuddy.com/top/week'\n\nDownload only images from manga using 8 threads\n\n    mangabuddy-scraper --images-only -t 8 'https://mangabuddy.com/night-by-the-sea'\n\nDownload metadata with comments, rating and reviews of a comic and its chapters to DIR directory\n\n    mangabuddy-scraper -d DIR --full 'https://mangabuddy.com/painter-of-the-night'\n\nDownload only basic metadata without chapters\n\n    mangabuddy-scraper --noimages --nochapters 'https://mangabuddy.com/im-really-not-the-demon-gods-lackey'\n\nDownload images, 3 pages of comments and 5 pages of reviews each comic\n\n    mangabuddy-scraper --full --comments-limit 3 --reviews-limit 5 'https://mangabuddy.com/genres/supernatural'\n\nForce urls to be used as a chapter, comic, list\n\n    mangabuddy --chapter URL1 --comic URL2 --list URL3\n\nGet some help\n\n    wordpress-madara-scraper -h\n\n## Scraping whole site\n\nAt the root of this project is script named `mangabuddy-all`. It's a wrapper script tailored to getting metadata from entire site in fast, extendable and reliable way.\n\nRunning this tool requires `mangabuddy-scraper` to be already installed. It takes 2 arguments, file with proxies in format accepted by curl in each line and number of threads. If you don't plan on using proxies you can set proxy file to `/dev/null`, although downloading everything might take months. If number of threads is not specified it defaults to number of proxies.\n\nImages links expire, so if you plan to mirror entire site you'll have to remove `--noimages` option of `mangabuddy-scraper` in `mangabuddy-all` script.\n\nYou can see scraped results of entire site [here](https://huggingface.co/datasets/hexderm/mangabuddy).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftuvimen%2Fmangabuddy-scraper","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftuvimen%2Fmangabuddy-scraper","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftuvimen%2Fmangabuddy-scraper/lists"}