TuneIn Rust Client Library

License: MIT

This is a Rust client library for the TuneIn Radio API.

🚚 Installation

Add the following to your Cargo.toml:

toml [dependencies] tunein = "0.1"

🚀 Usage

Search for a station:

```rust use tunein::TuneInClient;

[tokio::main]

async fn main() -> Result<(), Box> { let client = TuneInClient::new(); let results = client.search("alternativeradio.us").await?; println!("{}", serdejson::tostring_pretty(&results)?); Ok(()) } ```

See the examples directory for more examples.

✨ Features

License

MIT

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.