1 """A collection of classes for MusicBrainz.
2
3 To get started quickly, have a look at L{webservice.Query} and the examples
4 there. The source distribution also contains example code you might find
5 interesting.
6
7 This package contains the following modules:
8
9 1. L{model}: The MusicBrainz domain model, containing classes like
10 L{Artist <model.Artist>}, L{Release <model.Release>}, or
11 L{Track <model.Track>}
12
13 2. L{webservice}: An interface to the MusicBrainz XML web service.
14
15 3. L{wsxml}: A parser for the web service XML format (MMD).
16
17 4. L{disc}: Functions for creating and submitting DiscIDs.
18
19 5. L{utils}: Utilities for working with URIs and other commonly needed tools.
20
21 @author: Matthias Friedrich <matt@mafr.de>
22 """
23 __revision__ = '$Id: __init__.py 12709 2010-03-15 18:04:25Z matt $'
24 __version__ = '0.7.2'
25
26
27