https://github.com/bwsix/adget
All Debrid cli, powered by wget
https://github.com/bwsix/adget
Last synced: 4 days ago
JSON representation
All Debrid cli, powered by wget
- Host: GitHub
- URL: https://github.com/bwsix/adget
- Owner: BWsix
- License: gpl-3.0
- Created: 2024-01-22T08:43:20.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-04-13T15:35:57.000Z (over 2 years ago)
- Last Synced: 2025-03-27T17:51:45.992Z (over 1 year ago)
- Language: Rust
- Homepage: https://alldebrid.com
- Size: 41 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# adget
Unlocks premium link or downloads magnet with All Debrid premium account.
### examples
```bash
# download from premium host with wget, and set the output document to `renamed.zip`
adget "https://alligator.com/somefile.zip" -- -O renamed.zip
# get an all debrid download link of a magnet, and append to `links.txt`
adget -n "magnet:?xt=..." >> links.txt
```
### requirements
- rust
- wget
- All Debrid premium account
### quick start
1. clone and cd into this repo
2. run: `cargo build --release`
3. cp `./target/release/adget` to `/usr/local/bin`
1. or run the script `./scripts/deploy.sh`
2. to remove adget, we have `./scripts/undeploy.sh`
4. run `adget ` or `adget `
1. (you only have to do the following in the first run or when the apikey
becomes invalid)
2. generate an apikey here:
3. paste your apikey into the terminal
5. profit
### usage
```txt
> adget --help
All Debrid Downloader
Usage: adget [OPTIONS] [-- ...]
Arguments:
Magnet or Premium Link To Download
[wget-args]... Args for wget
Options:
-n, --nodl No Download: only prints out the all debrid link
-h, --help Print help
``````