sig
  type source = User | Broadcast | Recommendation | Lastfm | Unknown
  type rating = Love | Ban | Skip
  type action = NowPlaying | Submit
  type song = {
    artist : string;
    track : string;
    time : float option;
    source : Lastfm_generic.Audioscrobbler_t.source option;
    rating : Lastfm_generic.Audioscrobbler_t.rating option;
    length : float option;
    album : string option;
    trackauth : string option;
    tracknumber : int option;
    musicbrainzid : string option;
  }
  type error =
      Http of string
    | Banned
    | Badauth
    | Badtime
    | Failed of string
    | UnknownError of string
    | Success
    | Internal of string
    | BadData of string
  exception Error of Lastfm_generic.Audioscrobbler_t.error
  val string_of_error : Lastfm_generic.Audioscrobbler_t.error -> string
  val base_port : int Stdlib.ref
  val base_host : string Stdlib.ref
  val get_song :
    ?time:float ->
    ?source:Lastfm_generic.Audioscrobbler_t.source ->
    ?rating:Lastfm_generic.Audioscrobbler_t.rating ->
    ?length:float ->
    ?album:string ->
    ?tracknumber:int ->
    ?musicbrainzid:string ->
    ?trackauth:string ->
    artist:string ->
    track:string -> unit -> Lastfm_generic.Audioscrobbler_t.song
  val check_song :
    Lastfm_generic.Audioscrobbler_t.song ->
    Lastfm_generic.Audioscrobbler_t.action -> unit
  val do_np :
    ?timeout:float ->
    ?host:string * int ->
    Lastfm_generic.client ->
    Lastfm_generic.login -> Lastfm_generic.Audioscrobbler_t.song -> unit
  val do_submit :
    ?timeout:float ->
    ?host:string * int ->
    Lastfm_generic.client ->
    Lastfm_generic.login ->
    Lastfm_generic.Audioscrobbler_t.song list ->
    (Lastfm_generic.Audioscrobbler_t.error *
     Lastfm_generic.Audioscrobbler_t.song)
    list
  val handshake :
    ?timeout:float ->
    ?host:string * int ->
    Lastfm_generic.client -> Lastfm_generic.login -> string
  val np :
    ?timeout:float -> string -> Lastfm_generic.Audioscrobbler_t.song -> unit
  val submit :
    ?timeout:float ->
    string ->
    Lastfm_generic.Audioscrobbler_t.song list ->
    (Lastfm_generic.Audioscrobbler_t.error *
     Lastfm_generic.Audioscrobbler_t.song)
    list
end