libfm

Lightweight wrapper over last.fm API


Keywords
last, fm, API, scrobbler
License
MIT
Install
pip install libfm==0.1

Documentation

Lib.fm is a lightweight wrapper over the last.fm API.

Use 'python setup install' to install this library.

This library is compatible with Python 2.5 upwards.

All API methods are handled through the 'read' and 'write' methods.

Methods from the API's Auth should not be called directly. Instead use 
the equivalent 'create_mobile_session', 'create_session' and 'get_token'.

The 'read' and 'write' methods will return a JSON like structure made up of
lists and dictionaries. The same structure will be generated regardless the
format of the actual API method response (XML or JSON). By default libfm will
try to ask for JSON response formats. See http://www.last.fm/api/rest for the
rules on how XML responses get transformed into JSON.

Error responses will be raised as exceptions of type LibFMError. Error codes
above 100 correspond to error types introduced by this library.

Http proxies are supported per LibFm object instance.

LibFm's instances are thread safe, provided you refrain from modifying their 
instance members mid-execution :).

See example.py for usage examples.



The MIT License

Copyright (c) 2010 Mihai Damian

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.