{"id":18243815,"url":"https://github.com/lysagxra/animeworlddownloader","last_synced_at":"2025-04-08T18:27:29.908Z","repository":{"id":261100306,"uuid":"883268349","full_name":"Lysagxra/AnimeWorldDownloader","owner":"Lysagxra","description":"Efficient downloader for AnimeWorld","archived":false,"fork":false,"pushed_at":"2024-12-15T10:38:06.000Z","size":91,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-12-15T11:27:44.167Z","etag":null,"topics":["anime","anime-downloader","bulk","bulk-downloader","concurrent-processing","downloader","parallel-processing","python","python3"],"latest_commit_sha":null,"homepage":"","language":"Python","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/Lysagxra.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-04T17:03:29.000Z","updated_at":"2024-12-15T10:38:10.000Z","dependencies_parsed_at":"2024-12-06T15:25:19.475Z","dependency_job_id":"0fbef705-26b6-4606-aaa3-79f39cb4c1ae","html_url":"https://github.com/Lysagxra/AnimeWorldDownloader","commit_stats":{"total_commits":7,"total_committers":1,"mean_commits":7.0,"dds":0.0,"last_synced_commit":"b65428663bcac7d04219c5717f4e977dabca41e3"},"previous_names":["lysagxra/animeworlddownloader"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Lysagxra%2FAnimeWorldDownloader","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Lysagxra%2FAnimeWorldDownloader/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Lysagxra%2FAnimeWorldDownloader/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Lysagxra%2FAnimeWorldDownloader/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Lysagxra","download_url":"https://codeload.github.com/Lysagxra/AnimeWorldDownloader/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":230811095,"owners_count":18283645,"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":["anime","anime-downloader","bulk","bulk-downloader","concurrent-processing","downloader","parallel-processing","python","python3"],"created_at":"2024-11-05T09:03:21.938Z","updated_at":"2024-12-22T08:35:07.812Z","avatar_url":"https://github.com/Lysagxra.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# AnimeWorld Downloader\n\n\u003e A Python-based tool for downloading anime series from AnimeWorld, featuring progress tracking for each episode. It efficiently extracts video URLs and manages downloads.\n\n![Screenshot](https://github.com/Lysagxra/AnimeWorldDownloader/blob/48ebac6e425e3ca7bf89929b40a79d6f362f02c0/misc/Screenshot.png)\n\n## Features\n\n- Downloads multiple episodes concurrently.\n- Supports batch downloading via a list of URLs.\n- Supports downloading a specified range of episodes.\n- Tracks download progress with a progress bar.\n- Automatically creates a directory structure for organized storage.\n\n## Directory Structure\n\n```\nproject-root/\n├── helpers/\n│ ├── anime_utils.py     # Utilities for extracting information from AnimeWorld.\n│ ├── download_utils.py  # Utilities for managing the download process\n│ ├── file_utils.py      # Utilities for managing file operations\n│ ├── general_utils.py   # Miscellaneous utility functions\n│ └── progress_utils.py  # Tools for progress tracking and reporting\n├── anime_downloader.py  # Module for downloading anime episodes\n├── main.py              # Main script to run the downloader\n└── URLs.txt             # Text file containing anime URLs\n```\n\n## Dependencies\n\n- Python 3\n- `requests` - for HTTP requests\n- `BeautifulSoup` (bs4) - for HTML parsing\n- `rich` - for progress display in terminal\n\n## Installation\n\n1. Clone the repository:\n\n```bash\ngit clone https://github.com/Lysagxra/AnimeWorldDownloader.git\n```\n\n2. Navigate to the project directory:\n\n```bash\ncd AnimeWorldDownloader\n```\n\n3. Install the required dependencies:\n\n```bash\npip install -r requirements.txt\n```\n\n## Single Anime Download\n\nTo download a single anime, you can use the `anime_downloader.py` script.\n\n### Usage\n\nRun the script followed by the anime URL you want to download:\n\n```bash\npython3 anime_downloader.py \u003canime_url\u003e [--start \u003cstart_episode\u003e] [--end \u003cend_episode\u003e]\n```\n\n- `\u003canime_url\u003e`: The URL of the anime series.\n- `--start \u003cstart_episode\u003e`: The starting episode number (optional).\n- `--end \u003cend_episode\u003e`: The ending episode number (optional).\n\n### Examples\n\nTo download all episodes:\n```bash\npython3 anime_downloader.py https://www.animeworld.so/play/made-in-abyss.pIzmnA/TNBNCF\n```\n\nTo download a specific range of episodes (e.g., episodes 5 to 10):\n```bash\npython3 anime_downloader.py https://www.animeworld.so/play/made-in-abyss.pIzmnA/TNBNCF --start 5 --end 10\n```\n\nTo download episodes starting from a specific episode:\n```bash\npython3 anime_downloader.py https://www.animeworld.so/play/made-in-abyss.pIzmnA/TNBNCF --start 5\n```\nIn this case, the script will download all episodes starting from the `--start` episode to the last episode.\n\n## Batch Download\n\n### Usage\n\n1. Create a `URLs.txt` file in the project root and list the anime URLs you want to download.\n\n- Example of `URLs.txt`:\n\n```\nhttps://www.animeworld.so/play/made-in-abyss.pIzmnA/TNBNCF\nhttps://www.animeworld.so/play/chainsaw-man.3EoJJ/HhLOwe\nhttps://www.animeworld.so/play/hellsing-ultimate.w1pCF/ryYu5w\n```\n\n- Ensure that each URL is on its own line without any extra spaces.\n- You can add as many URLs as you need, following the same format.\n\n2. Run the main script via the command line:\n\n```bash\npython3 main.py\n```\n\nThe downloaded files will be saved in the `Downloads` directory.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flysagxra%2Fanimeworlddownloader","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flysagxra%2Fanimeworlddownloader","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flysagxra%2Fanimeworlddownloader/lists"}