• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/WebService/H19-Mar-2019-419197

t/H19-Mar-2019-251198

Build.PLH A D19-Mar-2019741 2524

ChangesH A D19-Mar-20194.1 KiB143110

MANIFESTH A D19-Mar-2019212 1514

META.jsonH A D19-Mar-20191.3 KiB5554

META.ymlH A D19-Mar-2019881 3332

Makefile.PLH A D19-Mar-2019381 1614

README.mdH A D19-Mar-20191 KiB4025

README.md

1# WebService-MusicBrainz
2
3This module will search the MusicBrainz database through their web service and
4return objects with the found data.  This module is not backward compatible
5with pre-1.0 versions.  Version 1.0 is a complete re-write based on
6Mojolicious and implements [MusicBrainz Web Service Version
72](https://musicbrainz.org/doc/Development/XML_Web_Service/Version_2).
8
9## INSTALLATION
10
11To install this module, using the ExtUtils::MakeMaker method:
12
13     perl Makefile.PL
14     make
15     make test
16     make install
17
18To install this module using the Module::Build method:
19
20     perl Build.PL
21     ./Build
22     ./Build test
23     ./Build install
24
25## DEPENDENCIES
26
27This module requires these other modules and libraries:
28
29* Mojolicious
30
31COPYRIGHT AND LICENSE
32
33Copyright (C) 2007-2017 by Bob Faist ( bob.faist at gmail.com )
34
35This library is free software; you can redistribute it and/or modify
36it under the same terms as Perl itself, either Perl version 5.8.4 or,
37at your option, any later version of Perl 5 you may have available.
38
39
40