soundcloud

Build Status Docs

A Rust library for interacting with the SoundCloud HTTP API.

Usage

Add the following to your Cargo.toml file.

toml [dependencies] soundcloud = "0.4"

To use this crate you need a client id. Soundcloud currently doesn't allow signup for their api so you need to use an existing client id.

```rust use soundcloud::Client;

[tokio::main]

async fn main() { let clientid = std::env::var("SOUNDCLOUDCLIENTID").unwrap(); let client = Client::new(&clientid); // ... } ```

API Usage is documented on docs.rs.