Metadata-Version: 1.1
Name: wimpy
Version: 0.1.0
Summary: Unofficial WiMP Python API
Home-page: https://github.com/tamland/wimpy
Author: Thomas Amland
Author-email: thomas.amland@googlemail.com
License: LGPL
Description: =====
        wimpy
        =====
        
        .. image:: https://badge.fury.io/py/wimpy.png
            :target: http://badge.fury.io/py/wimpy
            
        .. image:: https://travis-ci.org/tamland/wimpy.png?branch=master
                :target: https://travis-ci.org/tamland/wimpy
        
        
        Unofficial WiMP Python API
        
        
        Example usage
        -------------
        
        .. code-block:: python
        
            from wimpy import Session
        
            wimp = Session()
            wimp.login('username', 'password')
            tracks = wimp.get_album_tracks(album_id=16909093)
            for track in tracks:
                print(track.name)
        
        
        TODO
        -----
        
        - OO API (let's see how long until the web API changes first)
        - Implement POST methods (edit playlists, add favourites etc.)
        
        
        
        
        History
        -------
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
