Metadata-Version: 1.1
Name: PyLC
Version: 0.1.0a12
Summary: A python wrapper for the Lending Club API
Home-page: https://github.com/bmorrise/pylc
Author: Benjamin Morrise
Author-email: bmorrise@gmail.com
License: MIT
Description: Lending Club API
        
        .. image:: https://travis-ci.org/bmorrise/pylc.svg?branch=master
            :target: https://travis-ci.org/bmorrise/pylc
        
        .. image:: https://img.shields.io/pypi/v/pylc.svg
            :target: https://pypi.python.org/pypi/pylc
        
        .. image:: https://img.shields.io/pypi/dm/pylc.svg
                :target: https://pypi.python.org/pypi/pylc
        
        This project is intended for anyone who wants to interact with the Lending Club's API via Python. You can find the Lending Club API documentation here: https://www.lendingclub.com/developers/lc-api.action
        
        Installation
        ------------
        .. code-block:: python
        
          sudo pip install pylc
        
        Usage
        -----
        .. code-block:: python
        
          from pylc import LendingClubAPI
          lc = LendingClubAPI('[LENDING_CLUB_API_KEY]', '[ACCOUNT_NUMBER]')
          summary = lc.account.summary()
        
        Replace the [LENDING_CLUB_API_KEY] with a developer key from the Lending Club which can be generated here: https://www.lendingclub.com/account/profile.action
        
        Replace the [ACCOUNT_NUMBER] with your account number from this page: https://www.lendingclub.com/account/summary.action. You'll see your account number displayed like this: **My Account #XXXXXXXX**
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
