{"id":49079368,"url":"https://github.com/guanting112/rapidgator-dl","last_synced_at":"2026-04-20T12:10:45.742Z","repository":{"id":352486993,"uuid":"1215330995","full_name":"guanting112/rapidgator-dl","owner":"guanting112","description":"A Docker image for batch-downloading files from Rapidgator. Supports account login for share links and direct CDN URLs, with a TUI progress display.","archived":false,"fork":false,"pushed_at":"2026-04-19T19:30:08.000Z","size":1,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-19T21:27:41.807Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/guanting112.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2026-04-19T19:22:18.000Z","updated_at":"2026-04-19T19:30:11.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/guanting112/rapidgator-dl","commit_stats":null,"previous_names":["guanting112/rapidgator-dl"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/guanting112/rapidgator-dl","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guanting112%2Frapidgator-dl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guanting112%2Frapidgator-dl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guanting112%2Frapidgator-dl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guanting112%2Frapidgator-dl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/guanting112","download_url":"https://codeload.github.com/guanting112/rapidgator-dl/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guanting112%2Frapidgator-dl/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32046473,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-20T11:35:06.609Z","status":"ssl_error","status_checked_at":"2026-04-20T11:34:48.899Z","response_time":94,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":[],"created_at":"2026-04-20T12:10:45.111Z","updated_at":"2026-04-20T12:10:45.735Z","avatar_url":"https://github.com/guanting112.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# rapidgator-dl\n\nA Docker image for batch-downloading files from Rapidgator. Supports account login for share links and direct CDN URLs, with a TUI progress display.\n\n![Screenshot](https://i.imgur.com/uThb2Uz.jpeg)\n\n## Quick Start\n\nCreate a `links.txt` with one URL per line, then run:\n\n```sh\ndocker run --rm -it \\\n  -e RG_EMAIL=you@example.com \\\n  -e RG_PASSWORD='your-password' \\\n  -v \"$PWD/links.txt:/app/links.txt:ro\" \\\n  -v \"$PWD/downloads:/app/downloads\" \\\n  gc112/rapidgator-dl:latest\n```\n\nOr pass configuration via an `.env` file:\n\n```sh\ndocker run --rm -it \\\n  --env-file .env \\\n  -v \"$PWD/links.txt:/app/links.txt:ro\" \\\n  -v \"$PWD/downloads:/app/downloads\" \\\n  gc112/rapidgator-dl:latest\n```\n\nDownloaded files appear in `./downloads` on the host.\n\n## Links File\n\nOne URL per line. Supported:\n\n- Rapidgator share pages: `https://rapidgator.net/file/...` (login required)\n- Direct CDN URLs (no login needed)\n\nExample:\n\n```\nhttps://rapidgator.net/file/abc123.../example.mp4.html\nhttps://rapidgator.net/file/def456.../another.zip.html\n```\n\nEmpty lines and lines starting with `#` are ignored.\n\n## Environment Variables\n\n| Variable | Default | Description |\n| --- | --- | --- |\n| `RG_EMAIL` | — | Rapidgator account (required for share links) |\n| `RG_PASSWORD` | — | Rapidgator password |\n| `RG_DELAY` | `30s` | Delay between files (e.g. `45s`, `1m`) |\n| `RG_REQUEST_TIMEOUT` | `30s` | Per-request HTTP timeout |\n| `RG_RATE_KBPS` | `0` | Download speed cap in KB/s (`0` = unlimited) |\n\nExample `.env`:\n\n```\nRG_EMAIL=you@example.com\nRG_PASSWORD=your-password\nRG_DELAY=45s\nRG_RATE_KBPS=2048\n```\n\n## Notes\n\n- Credentials are only needed when a `rapidgator.net/file/...` share link is encountered; direct CDN URLs work without login.\n- Completed files are skipped on rerun; interrupted downloads resume from `.part` temp files.\n- Press `Ctrl+C` to stop safely — progress on the current file is preserved.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fguanting112%2Frapidgator-dl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fguanting112%2Frapidgator-dl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fguanting112%2Frapidgator-dl/lists"}