A Rust wrapper for RARBG TorrentAPI
Report bug
ยท
Request feature
This Rust module allows easy interaction with RARBG TorrentAPI.
In particular, it allows to list or search torrents and to export them to a magnet file.
Add this to your Cargo.toml
:
toml
[dependencies]
rarbg_api = "0.1.0"
```rust extern crate rarbg_api;
use rarbg_api::RarBgApi;
fn main() { let mut api = RarBgApi::new("myappid"); let result = api.list(None); match result { Ok(torrentresults) => println!("{:?}", torrentresults.torrents()), Err(reason) => println!("{:?}", reason) } } ```
Have a bug or a feature request? Please first search for existing and closed issues. If your problem or idea is not addressed yet, please open a new issue.
Contributions are welcome!
Downloading content that you (don't) have might be illegal in your country.
This is an unofficial rust package.