Metadata-Version: 1.0
Name: python-pipedrive
Version: 0.1.2
Summary: Light wrapper around Pipedrive API
Home-page: http://github.com/jscott1989/python-pipedrive
Author: Jonathan Scott
Author-email: jonathanscott1989@gmail.com
License: MIT
Download-URL: http://github.com/jscott1989/python-pipedrive/downloads
Description: python-pipedrive
        ================
        
        Python library for interacting with the pipedrive.com API
        
        
        This is being developed for my specific use so there's no guarantee I'll cover all of the aspects of the Pipedrive API. Feel free to add features though, I welcome pull requests.
        
        All features should be supported though as this is just a lightweight wrapper around the API.
        
        
        Usage:
        
        Create a Pipedrive object, passing either the api key or your username and password as the parameters
        
        	from pipedrive import Pipedrive
        	pipedrive = Pipedrive(USERNAME, PASSSWORD)
        
        or
        
        	from pipedrive import Pipedrive
        	pipedrive = Pipedrive(API_KEY)
        
        The rest of the functions relate to the URL as specified in the [API Docs](https://app.pipedrive.com/docs/auth/login).
        
        E.g. to add a deal:
        
            pipedrive.deal_add({"deal[title]": "My deal", "deal[value]": 1000, # etc....
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Framework :: Django
