Skip to main content
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

```python
from pipedrive import Pipedrive
pipedrive = Pipedrive(USERNAME, PASSSWORD)
```

or

```python
from pipedrive import Pipedrive
pipedrive = Pipedrive(API_KEY)
```

The rest of the functions relate to the URL as specified in the [API Docs](https://developers.pipedrive.com/v1).

Do yourself a favor and try a few simple requests and look the raw responses to know what data Pipedrive's API gives you. This will aid in knowing how to deal with your responses in python code. For example, to find an organzation:


curl 'https://api.pipedrive.com/v1/organizations/find?api_token=abcd1234abcd1234abcd1234abcd1234abcd1234&term=microsoft'

which spits out something like:

{"success":true,"data":[{"id":215,"name":"Microsoft Main Organization","visible_to":"3"},{"id":360,"name":"Microsoft Subdivision Company","visible_to":"3"}],"additional_data":{"pagination":{"start":0,"limit":100,"more_items_in_collection":false}}}


The two things to note are the HTTP Method, and the path:

Examples:

1. List the organizations
```python
pipedrive.organizations(method='GET')
```

2. Add a New Deal
```python
pipedrive.deals({
'title': 'Big Sucker',
'value': 1000000,
'org_id': 2045,
'status': 'open'
}, method='POST')
```

3. Delete an Activity
```python
pipedrive.activities({'id': 6789}, method='DELETE')
```

4. Find a person, and use the search results. The variable ```term``` is the search term that has been passed in.
```python
import json
...
response = pipedrive.persons_find({'term':term}, method='GET')
results = response['data']
suggestions = []
if results != None:
for result in results:
suggestions.append({'value': result['name'], 'data': result})
json_response = {'query': term, 'suggestions': suggestions}
data = json.dumps(json_response)

```
And return ```data``` to some kind of javascript search result autocomplete thing (this example is formatted for devbridge's simple and easy-to-use [jquery.autocomplete.js](https://github.com/devbridge/jQuery-Autocomplete))

Release files for python-pipedrive 0.4.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for python-pipedrive 0.4.0
File Size Uploaded
python-pipedrive-0.4.0.tar.gz 3.5 kB Details

Release files / python-pipedrive-0.4.0.tar.gz

Download URL python-pipedrive-0.4.0.tar.gz
Size 3.5 kB
Tags Source
SHA-256 checksum
How to use checksums
f492269c73b1de6ba459a907bb2b0840e83b77db861cc125effc2e81a88f1839
BLAKE2b-256 checksum
How to use checksums
85cb4c46bff434575d64524354f36c914a69064a365767cf83c8301d83431896
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release history Release notifications | RSS feed

This release

0.4.0 This release

1 release file

0.3.1

1 release file

0.3

1 release file

0.2

0.1.2

1 release file

0.1.1

1 release file

0.1.0

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page