Metadata-Version: 1.1
Name: pypipedrive
Version: 0.1.3
Summary: Python wrapper for the Pipedrive API
Home-page: https://github.com/42cc/pypipedrive
Author: Andriy Sheerpa
Author-email: asherepa@gmail.com
License: BSD License
Download-URL: https://github.com/42cc/pypipedrive/tarball/master
Description: Python Pipedrive API
        ====================
        
        The project provides access to the Pipedrive API
        
        The project is still at an early stage and requires a lot of testing. Any help including bug reports is appreciated.
        
        ### Usage:
        
            from pypipedrive import PipeDrive
            p = PipeDrive("YOUR_API_KEY")
            print p.persons()
            print p.persons.find(term="Persons Name")
            print p.persons(method='POST', name='Ivanov I.I.')
            print p.persons._id(method='DELETE', _id=1)
        
        
Keywords: pipedrive,api
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
Requires: python (>= 2.7)
Requires: requests
