The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Lyrics::Fetcher::LyricWiki - Get song lyrics from www.LyricWiki.org

SYNOPSIS

  use Lyrics::Fetcher;
  print Lyrics::Fetcher->fetch("<artist>","<song>","LyricWiki");

  # or, if you want to use this module directly without Lyrics::Fetcher's
  # involvement:
  use Lyrics::Fetcher::LyricWiki;
  print Lyrics::Fetcher::LyricWiki->fetch('<artist>', '<song>');

DESCRIPTION

This module tries to get song lyrics from www.lyricwiki.org. It's designed to be called by Lyrics::Fetcher, but can be used directly if you'd prefer.

FUNCTIONS

fetch($artist, $song)

Fetch lyrics for the requested song.

BUGS

Probably. Coded in about an hour whilst drinking cold lager :) If you find any bugs, please let me know.

THANKS

Thanks to Sean Colombo for creating www.LyricWiki.org, and thanks to Wikia.com for taking on the project and keeping it alive.

COPYRIGHT

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

DISCLAIMER

Lyrics are copyright their original owners and/or record companies who purchased the rights to them. Lyrics accessed programmatically via this module should be used for educational purposes only, and should not be distributed/re-published without authorisation. You are responsible for your usage of this module.

AUTHOR

David Precious <davidp@preshweb.co.uk>

COPYRIGHT AND LICENSE

Copyright (C) 2007-2010 by David Precious

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.7 or, at your option, any later version of Perl 5 you may have available.