#![allow(non_snake_case)] use musichoard::{ collection::musicbrainz::Mbid, external::musicbrainz::{ api::{lookup::LookupArtistRequest, MusicBrainzClient}, http::MusicBrainzHttp, }, }; use structopt::StructOpt; use uuid::Uuid; const USER_AGENT: &str = concat!( "MusicHoard---examples---musicbrainz-api---lookup-artist/", env!("CARGO_PKG_VERSION"), " ( musichoard@thenineworlds.net )" ); #[derive(StructOpt)] struct Opt { #[structopt(help = "Artist MBID to lookup")] mbid: Uuid, } fn main() { let opt = Opt::from_args(); println!("USER_AGENT: {USER_AGENT}"); let http = MusicBrainzHttp::new(USER_AGENT).expect("failed to create API client"); let mut client = MusicBrainzClient::new(http); let mbid: Mbid = opt.mbid.into(); let mut request = LookupArtistRequest::new(&mbid); request.include_release_groups(); let response = client .lookup_artist(request) .expect("failed to make API call"); println!("{response:#?}"); }