RARBG TorrentAPI

A Rust wrapper for RARBG TorrentAPI
Report bug ยท Request feature

Table of contents

Description

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.

Quick start

Add this to your Cargo.toml: toml [dependencies] rarbg_api = "0.1.0"

Example

```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) } } ```

Bugs and feature requests

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.

Contributing

Contributions are welcome!

Contributors

Disclaimer

Downloading content that you (don't) have might be illegal in your country.

This is an unofficial rust package.