1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
Examples for typical use cases
------------------------------
This directory contains example code which should cover the most important
use cases. The following demo scripts are available:
discid.py
Reads the disc in the computers CD-ROM/DVD-ROM drive. It calculates a
MusicBrainz DiscID and displays the TOC as well as a submission URL.
findartist.py
Search MusicBrainz for artists matching the given name.
findtrack.py
Search MusicBrainz for a track matching the given track title and,
optionally, artist name.
getartist.py
Retrieve an artist using a MusicBrainz ID and display all officially
released albums.
getrelease.py
Retrieve a release by MusicBrainz ID, including tracks and other
associated data, like release dates or DiscIDs.
getrelations.py
Retrieve an artist by MusicBrainz ID and display relations to URLs and
other artists. This demonstrates how to use the more advanced features
of the web service.
getuser.py
Display some information about a MusicBrainz user. You need the user
name and password to use this.
ripper.py
This example shows how to get a MusicBrainz DiscID for a CD in the disc
drive and to get the matching releases from the web service. This is
the typical workflow for a simple CD ripper application.
--
$Id: README.txt 202 2006-03-27 15:49:09Z matt $
|