1WebService::ISBNDB - Access to the isbndb.com API
2
3Version: 0.34
4
5WHAT IS IT
6
7This is a module to provide programmatic access to the database of book and
8author information hosted by isbndb.com (see http://isbndb.com). To access
9the API provided by the site, you will have to register a user account and
10create an access key.
11
12
13BUILDING/INSTALLING
14
15This package is set up to configure and build like a typical Perl extension.
16To build:
17
18        perl Build.PL
19        ./Build
20	./Build test
21
22If WebService::ISBNDB passes all tests, then:
23
24        ./Build install
25
26You may need super-user access to install.
27
28
29PROBLEMS/BUG REPORTS
30
31Please send any reports of problems or bugs to rjray@blackperl.com
32
33
34CHANGES
35
36Fixed/updated copyright and licensing information. All licensing links
37are current with regards to Artistic 2.0 and LGPL 2.1.
38
39Fixed a bug found by Gavin Carr in which search attempts routed through
40static-method invocations of search() in any of the types (Books,
41Authors, etc.) would fail to get the API key unless one had been set as
42a default.
43
44Fixed $VERSION strings to bump them up; bitten by svn oversight again.
45
46Added the warnings pragma for cleanliness and consistency (despite this
47being a dummy module).
48