2 releases

0.7.2 May 30, 2024
0.7.1 Mar 10, 2024

#321 in Audio

Download history 14/week @ 2024-07-22 10/week @ 2024-07-29 7/week @ 2024-08-05 57/week @ 2024-08-12 62/week @ 2024-08-19 31/week @ 2024-08-26 1/week @ 2024-09-02 70/week @ 2024-09-09 1/week @ 2024-09-16 27/week @ 2024-09-23 4/week @ 2024-09-30 93/week @ 2024-10-07 12/week @ 2024-10-14 16/week @ 2024-10-21 10/week @ 2024-10-28 15/week @ 2024-11-04

55 downloads per month
Used in listenbrainz-cli-tools

MIT license

67KB
1.5K SLoC

DO NOT USE THIS

use listenbrainz-rs instead

This is just a temporary fork with some merged pull requests to allow the CI of listenbrainz-cli-tools to work. Concider it as a nighly version of https://github.com/InputUsername/listenbrainz-rs with selective feature merging.

I will break compatibility, and I wont care about your crates. listenbrainz-rs is still actively maintained, so use it instead.


lib.rs:

API bindings for ListenBrainz.

This crate aims to be an idiomatic wrapper of the ListenBrainz HTTP API (version 1). It contains functionality for direct access to the API in the [raw] module, as well as a more convenient ListenBrainz client which is easier to use.

Generally, using the raw functionality is more cumbersome, as its types and functions map one-to-one to the HTTP API's JSON input- and response data. Using the ListenBrainz type is therefore recommended.

Example

Submit a currently playing song to ListenBrainz.org:

#
let mut client = ListenBrainz::new();

client.authenticate("LISTENBRAINZ TOKEN")
    .expect("Could not authenticate with ListenBrainz");

client.playing_now("The Beatles", "Here Comes the Sun", Some("Abbey Road"))
    .expect("Could not submit 'playing now' request");

Use a custom API URL, for example to submit songs to Maloja:

#
let mut client = ListenBrainz::new_with_url("http://maloja.example.com/apis/listenbrainz");

client.authenticate("MALOJA API KEY")
    .expect("Could not authenticate with Maloja");

client.listen("Lymbyc Systym", "Split Stones", None)
    .expect("Could not submit listen");

Dependencies

~3–4.5MB
~83K SLoC