{"id":20675862,"url":"https://github.com/lysagxra/eromedownloader","last_synced_at":"2026-04-01T23:05:38.670Z","repository":{"id":259442610,"uuid":"877280814","full_name":"Lysagxra/EromeDownloader","owner":"Lysagxra","description":"Efficient downloader for Erome","archived":false,"fork":false,"pushed_at":"2026-03-30T09:06:08.000Z","size":867,"stargazers_count":34,"open_issues_count":0,"forks_count":8,"subscribers_count":3,"default_branch":"main","last_synced_at":"2026-03-30T11:12:25.483Z","etag":null,"topics":["downloader","erome","erome-download","erome-downloader","profile-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-23T11:53:56.000Z","updated_at":"2026-03-30T09:06:12.000Z","dependencies_parsed_at":"2024-10-25T12:57:10.019Z","dependency_job_id":"9735a91c-3b75-4f96-82c9-45cb9bc137b2","html_url":"https://github.com/Lysagxra/EromeDownloader","commit_stats":null,"previous_names":["lysagxra/eromedownloader"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/Lysagxra/EromeDownloader","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Lysagxra%2FEromeDownloader","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Lysagxra%2FEromeDownloader/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Lysagxra%2FEromeDownloader/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Lysagxra%2FEromeDownloader/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Lysagxra","download_url":"https://codeload.github.com/Lysagxra/EromeDownloader/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Lysagxra%2FEromeDownloader/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31292797,"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":["downloader","erome","erome-download","erome-downloader","profile-downloader","python","python3"],"created_at":"2024-11-16T21:10:56.448Z","updated_at":"2026-04-01T23:05:38.661Z","avatar_url":"https://github.com/Lysagxra.png","language":"Python","funding_links":["https://ko-fi.com/lysagxra"],"categories":[],"sub_categories":[],"readme":"# Erome Downloader\n\n\u003e A Python-based tool for downloading Erome albums. This project includes functionality to extract album links from user profiles and download them efficiently.\n\n![Demo](https://github.com/Lysagxra/EromeDownloader/blob/51784c7396e3809582ced6a1465459526b196784/assets/demo.gif)\n\n## Features\n\n- Downloads multiple files concurrently from albums.\n- Supports [batch downloading](https://github.com/Lysagxra/EromeDownloader?tab=readme-ov-file#batch-download) via a list of URLs.\n- Supports [downloading of user profile](https://github.com/Lysagxra/EromeDownloader?tab=readme-ov-file#profile-crawler-and-downloader) album links.\n- Supports [custom download location](https://github.com/Lysagxra/EromeDownloader/?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\n\u003cdetails\u003e\n\n\u003csummary\u003eShow directory structure\u003c/summary\u003e\n\n```\nproject-root/\n├── helpers/\n│ ├── managers/\n│ │ ├── live_manager.py      # Manages a real-time live display\n│ │ ├── log_manager.py       # Manages real-time log updates\n│ │ └── progress_manager.py  # Manages progress bars\n│ ├── config.py              # Manages constants and settings used across the project\n│ ├── download_utils.py      # Utilities for managing the download process\n│ ├── erome_utils.py         # Functions for validating and processing Erome album URLs.\n│ ├── file_utils.py          # Utilities for managing file operations\n│ ├── general_utils.py       # Miscellaneous utility functions\n│ └── profile_crawler.py     # Module to crawl profiles for album links\n├── album_downloader.py      # Module for downloading albums\n├── main.py                  # Main script to run the downloader\n├── profile_dump.txt         # Log file for recording session details\n└── URLs.txt                 # Text file containing album URLs\n```\n\n\u003c/details\u003e\n\n## Installation\n\n1. Clone the repository:\n\n```bash\ngit clone https://github.com/Lysagxra/EromeDownloader.git\n```\n\n2. Navigate to the project directory:\n\n```bash\ncd EromeDownloader\n```\n\n3. Install the required dependencies:\n\n```bash\npip install -r requirements.txt\n```\n\n## Batch Download\n\nTo batch download from multiple album URLs, you can use the `main.py` script. This script reads URLs from a file named `URLs.txt` and downloads each one using the album downloader.\n\n### Usage\n\n1. Create a `URLs.txt` file in the project root and list the album URLs you want to download.\n\n- Example of `URLs.txt`:\n\n```\nhttps://www.erome.com/a/fNpP7r11\nhttps://www.erome.com/a/o0I2Smt1\nhttps://www.erome.com/a/cef1Rmyr\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```\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\n## Profile Crawler and Downloader\n\nTo download all the albums from a profile page, you can use the `-p` option.\n\n### Usage\n\nUse the `-p` option if you want to extract album links from a specific profile:\n\n```bash\npython3 main.py [-p \u003cprofile_page_url\u003e]\n```\n\n### Example\n\n```\npython3 main.py -p https://www.erome.com/marieanita\n```\n\nThe downloaded files will be saved in `Downloads/\u003cprofile_name\u003e` directory, where `\u003cprofile_name\u003e` is the profile name extracted from the page.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flysagxra%2Feromedownloader","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flysagxra%2Feromedownloader","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flysagxra%2Feromedownloader/lists"}