__init__(self,
title=None,
artistName=None,
artistId=None,
releaseTitle=None,
releaseId=None,
duration=None,
puid=None,
limit=None,
offset=None,
query=None)
(Constructor)
| source code
|
Constructor.
If artistId , releaseId or puid
are set, only tracks matching those IDs are returned.
The server will ignore artistName and
releaseTitle if artistId or ${releaseId} are
set respectively.
The query parameter may contain a query in Lucene syntax. Note that query may not be
used together with the other parameters except for limit and
offset .
- Parameters:
title - a unicode string containing the track's title
artistName - a unicode string containing the artist's name
artistId - a string containing the artist's ID
releaseTitle - a unicode string containing the release's title
releaseId - a string containing the release's title
duration - the track's length in milliseconds
puid - a string containing a PUID
limit - the maximum number of releases to return
offset - start results at this zero-based offset
query - a string containing a query in Lucene syntax
- Overrides:
object.__init__
|