{"id":20675863,"url":"https://github.com/lysagxra/animeunitydownloader","last_synced_at":"2026-04-01T23:10:58.550Z","repository":{"id":260174355,"uuid":"880524445","full_name":"Lysagxra/AnimeUnityDownloader","owner":"Lysagxra","description":"Efficient downloader for AnimeUnity","archived":false,"fork":false,"pushed_at":"2026-03-30T09:05:02.000Z","size":196,"stargazers_count":41,"open_issues_count":0,"forks_count":10,"subscribers_count":2,"default_branch":"main","last_synced_at":"2026-03-30T11:10:57.186Z","etag":null,"topics":["anime","anime-downloader","bulk","bulk-downloader","downloader","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":"CONTRIBUTING.md","funding":".github/FUNDING.yml","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":null,"patreon":null,"open_collective":null,"ko_fi":"lysagxra","tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"lfx_crowdfunding":null,"polar":null,"buy_me_a_coffee":null,"thanks_dev":null,"custom":null}},"created_at":"2024-10-29T22:03:17.000Z","updated_at":"2026-03-30T09:05:06.000Z","dependencies_parsed_at":null,"dependency_job_id":"887e46d6-1c58-40bd-8ace-789d5a04ac80","html_url":"https://github.com/Lysagxra/AnimeUnityDownloader","commit_stats":null,"previous_names":["lysagxra/animeunitydownloader"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/Lysagxra/AnimeUnityDownloader","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Lysagxra%2FAnimeUnityDownloader","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Lysagxra%2FAnimeUnityDownloader/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Lysagxra%2FAnimeUnityDownloader/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Lysagxra%2FAnimeUnityDownloader/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Lysagxra","download_url":"https://codeload.github.com/Lysagxra/AnimeUnityDownloader/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Lysagxra%2FAnimeUnityDownloader/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31292822,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-01T21:15:39.731Z","status":"ssl_error","status_checked_at":"2026-04-01T21:15:34.046Z","response_time":53,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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","downloader","python","python3"],"created_at":"2024-11-16T21:10:56.914Z","updated_at":"2026-04-01T23:10:58.540Z","avatar_url":"https://github.com/Lysagxra.png","language":"Python","funding_links":["https://ko-fi.com/lysagxra"],"categories":[],"sub_categories":[],"readme":"# AnimeUnity Downloader\n\n\u003e A Python-based tool for downloading anime series from AnimeUnity, featuring progress tracking for each episode. It efficiently extracts video URLs and manages downloads.\n\n![Demo](https://github.com/Lysagxra/AnimeUnityDownloader/blob/8e274bdfb71f8fc714fa02322ec2b3eda61cce53/assets/demo.png)\n\n## Features\n\n- Downloads multiple episodes concurrently.\n- Supports [batch downloading](https://github.com/Lysagxra/AnimeUnityDownloader?tab=readme-ov-file#batch-download) via a list of URLs.\n- Supports downloading a [specified range of episodes](https://github.com/Lysagxra/AnimeUnityDownloader?tab=readme-ov-file#single-anime-download).\n- Supports [custom download location](https://github.com/Lysagxra/AnimeUnityDownloader/tree/main?tab=readme-ov-file#file-download-location).\n- Tracks download progress with a progress bar.\n- Automatically creates a directory structure for organized storage.\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- `fake_useragent` - for generating fake user agents for web scraping\n- `httpx` - for making asynchronous HTTP requests\n\n\u003cdetails\u003e\n\n\u003csummary\u003eShow directory structure\u003c/summary\u003e\n\n```\nproject-root/\n├── helpers/\n│ ├── crawlers/\n│ │ ├── crawler.py        # Module for crawling tasks\n│ │ └── crawler_utils.py  # Utilities for extracting media download links\n│ ├── config.py           # Manages constants and settings used across the project\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\u003c/details\u003e\n\n## Installation\n\n1. Clone the repository:\n\n```bash\ngit clone https://github.com/Lysagxra/AnimeUnityDownloader.git\n```\n\n2. Navigate to the project directory:\n\n```bash\ncd AnimeUnityDownloader\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] [--episodes \u003cepisode_list\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- `--episodes \u003cepisode_list\u003e`: Comma or space separated list of specific episode numbers to download.\n\n### Examples\n\nTo download all episodes:\n```bash\npython3 anime_downloader.py https://www.animeunity.so/anime/1517-yuru-yuri\n```\n\nTo download a specific range of episodes (e.g., episodes 5 to 10):\n```bash\npython3 anime_downloader.py https://www.animeunity.so/anime/1517-yuru-yuri --start 5 --end 10\n```\n\nTo download episodes starting from a specific episode:\n```bash\npython3 anime_downloader.py https://www.animeunity.so/anime/1517-yuru-yuri --start 5\n```\nIn this case, the script will download all episodes starting from the `--start` episode to the last episode.\n\nTo download episodes up to a certain episode:\n```bash\npython3 anime_downloader.py https://www.animeunity.so/anime/1517-yuru-yuri --end 10\n```\nIn this case, the script will download all episodes starting from the first episode to the `--end` episode.\n\nTo download only specific episodes (e.g., episodes 3, 7, 12, and 15) add the `--episodes` flag and the list of episodes separated by comma or space or both\n\n```bash\npython3 anime_downloader.py https://www.animeunity.so/anime/1517-yuru-yuri --episodes 3,7,12,15\npython3 anime_downloader.py https://www.animeunity.so/anime/1517-yuru-yuri --episodes 3 7 12 15\n```\n\nThis is useful when you already have some episodes and only need to download the missing ones, avoiding re-downloading an entire range.\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.animeunity.so/anime/1517-yuru-yuri\nhttps://www.animeunity.so/anime/3871-chainsaw-man\nhttps://www.animeunity.so/anime/2598-made-in-abyss\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\n## File Download Location\n\nIf the `--custom-path \u003ccustom_path\u003e` argument is used, the downloaded files will be saved in `\u003ccustom_path\u003e/Downloads`. Otherwise, the files will be saved in a `Downloads` folder created within the script's directory\n\n### Usage\n\n```bash\npython3 main.py --custom-path \u003ccustom_path\u003e\n```\n\n### Example\n\n```bash\npython3 main.py --custom-path /path/to/external/drive\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flysagxra%2Fanimeunitydownloader","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flysagxra%2Fanimeunitydownloader","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flysagxra%2Fanimeunitydownloader/lists"}