Package pyechonest :: Module catalog
[hide private]
[frames] | no frames]

Module catalog

source code

Copyright (c) 2010 The Echo Nest. All rights reserved. Created by Scotty Vercoe on 2010-08-25.

The Catalog module loosely covers http://developer.echonest.com/docs/v4/catalog.html Refer to the official api documentation if you are unsure about something.

Classes [hide private]
  Catalog
A Catalog object
Functions [hide private]
 
dthandler(obj) source code
 
list_catalogs(results=30, start=0)
Returns list of all catalogs created on this API key
source code
Variables [hide private]
  __package__ = 'pyechonest'
Function Details [hide private]

list_catalogs(results=30, start=0)

source code 

Returns list of all catalogs created on this API key

Args:

Kwargs:

results (int): An integer number of results to return

start (int): An integer starting value for the result set

Returns:
A list of catalog objects

Example:

>>> catalog.list()
[<catalog - test_artist_catalog>, <catalog - test_song_catalog>, <catalog - my_songs>]
>>>