Metadata-Version: 1.1
Name: python-taobao
Version: 0.1.2
Summary: Library for taobao api 
Home-page: https://github.com/buke/python-taobao/
Author: wangbuke
Author-email: wangbuke@gmail.com
License: AGPLv3+
Description: python-taobao
        ==============
        
        作者： wangbuke@gmail.com
        
        python-taobao is a library to write taobao-open-platform api in a pythonic way.
        
        
        Install::
        
            # pip install -e git+https://github.com/buke/python-taobao.git#egg=python-taobao
        
        Uninstall::
        
            # pip uninstall python-taobao
        
        
        Nutshell
        --------
        
        Import::
        
            >>> import taobao
        
        Simple User::
        
            >>> top = taobao.ServerProxy(app_key = "xxx", app_secret="xxx", session="xxx")
            >>> seller = top.taobao.user.seller.get(fields=['nick','sex'])
            >>> dict(seller)
            {'nick': 'seller_nick', 'sex': 1}
        
            >>> seller.nick 
            'seller_nick'
        
            >>> seller.sex 
            1 
        
        
        支持开源：
        ----------
        
        如果您觉得好用，请进入下面的网址，付费支持作者 ~
        
        http://me.alipay.com/wangbuke
        
        谢谢！
        
        
        
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
