Metadata-Version: 1.1
Name: NetEaseMusicApi
Version: 1.0.1
Summary: A complete NetEase cloud music api
Home-page: https://github.com/littlecodersh/NetEaseMusicApi
Author: LittleCoder
Author-email: i7meavnktqegm1b@qq.com
License: MIT
Description: NetEaseMusicApi
        ===============
        
        Complete api for NetEase Cloud Music
        
        **Usage**
        
        - api class provide common api uses, whose function based on url after '/api/'.
        
        .. code:: python
        
            # take the api of http://music.163.com/api/song/detail as example
            # /api/song/detail -> api.song.detail
            # songId = 28377211
            api.song.detail(28377211) 
        
        - provide basic functions like save songs and save albums as demo of api
        
        **Installation**
        
        .. code:: bash
        
            pip install NetEaseMusicApi
        
        **Demo**
        
        .. code:: python
        
            from NetEaseMusicApi import api, save_song, save_album
            save_song('Apologize')
        
Keywords: NetEase music api python
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
