#Scribble
###Simple Last.fm scrobbler for node.js
#####Scribble down the song

###PreReqs
Get a last.fm API account and save the api key, api secret, and your username and password.
###Install
npm install scribble
###Use it
var scribble = require('scribble');
var Scrobbler = new scribble('your_api_key','your_api_secret','your_lastfm_username','your_lastfm_password');
var song = {
artist: 'Slayer',
track: 'Disciple',
album: 'God Hates Us All'
};
Scrobbler.NowPlaying(song, function(post_return_data) {});
Scrobbler.Scrobble(song, function(post_return_data) {});
Scrobbler.Love(song, function(post_return_data) {});
Scrobbler.GetAlbum(song, function(ret) {});
Scrobbler.GetArtistInfo(song.artist, function(ret) {});
Scrobbler.GetSimilarArtists(song.artist, function(ret) {}, optional_return_amount_defaults_to_50);
Scrobbler.GetArtistEvents(song.artist, function(ret) {}, optional_return_amount_defaults_to_50);
Scrobbler.GetTopAlbums(song.artist, function(ret) {}, optional_return_amount_defaults_to_50);
Scrobbler.GetArtistTopTracks(song.artist, function(ret) {}, optional_return_amount_defaults_to_50);
Scrobbler.GetSimilarSongs(song, function(ret) {}, optional_return_amount_defaults_to_50);
Scrobbler.GetTrackInfo(song, function(ret) {});
Scrobbler.GetAlbumInfo(song, function(ret) {});
###Tests
npm install
make test
or
npm test