Python-outreach is a Python wrapper functions for Outreach APIs
Project description
Python-Outreach
Python wrapper functions for Outreach APIs, tested with Python 3.8 - 3.9.
This python client wrapper helps connects outreach API by authentication flow, any request use two distinct sets of credentials. The API key and secret identify the requester.
Quick Start
- Installation
- Dependent libraries The following dependent libraries were installed.
pip install singer-python pip install requests
- Install from pypi using pip
pip install python-outreach
- Clone this repository, and then install using setup.py. Recommend using a virtualenv:
> virtualenv -p python3 venv > source venv/bin/activate > python setup.py install OR > cd .../python-outreach > pip install .
- Set the environment variables,
refresh_token
,redirect_uri
,client_id
, andclient_secret
are the credentials need to set for outreach client. More details for Authentication is hereexport client_id=<Application_Identifier> export client_secret=<Application_Secret> export redirect_uri=<Application_Redirect_URI> export refresh_token=<Refresh_Token>
- To work with the API client, we start with the
OutreachClient
class:connect_config = { 'user_agent': '', 'client_id': environ['OUTREACH_CLIENT_ID'], 'client_secret': environ['OUTREACH_CLIENT_SECRET'], 'redirect_uri': environ['OUTREACH_REDIRECT_URI'], 'refresh_token': environ['OUTREACH_REFRESH_TOKEN'], 'quota_limit': 9999 } or_client = OutreachClient(connect_config)
- To Fetch prospects by email address or prospect id use
or_client.get(path=f'prospects?filter[emails]={:email}') # or or_client.get(path=f'prospects/{:id}')
- To Create new prospects or update existing
# To Create New or_client.post(path=f'prospects', json={ "data": { "type": "prospect", "attributes": {:Prospect_rec_attributes key:value} } }) # For update or_client.update(path=f'prospects/{prospect_id}', json={ "data": { "type": "prospect", "id": int(prospect_id), "attributes": prospect_rec } })
Feature requests
To request a new feature in this package, please open a new issue on the Github repo. To report problems, please open a new issue on the Github repo.
Contribution
Pull requests are welcomed! All pull requests must have the following:
- OK global score from pylint using PEP8 standards
- This one is a bit loose for now given that the old code is still a mess; once the renovation is complete, we will implement a minimum passing pylint score
- Passing unit tests (nosetests) that cover the included use cases and pass the current tox config
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file python-outreach-0.1.5.tar.gz
.
File metadata
- Download URL: python-outreach-0.1.5.tar.gz
- Upload date:
- Size: 4.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e5a7a682ef2e7e9628fc7a4edc38b77caa6c4b1b02ad66bac5195681f4396c96 |
|
MD5 | df967bdbf1bbf0097dc894f34552baaa |
|
BLAKE2b-256 | 7929d28b5d23b88058aa1ba350656efb42cd36122e74d34f412df14272e02d77 |
File details
Details for the file python_outreach-0.1.5-py2-none-any.whl
.
File metadata
- Download URL: python_outreach-0.1.5-py2-none-any.whl
- Upload date:
- Size: 5.1 kB
- Tags: Python 2
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c4045a10e0de7a8b3d913d99569e43d01bb5b5cea96ffb45a4b7ceee77b6a918 |
|
MD5 | 0b0d31156819938a57387c66e177c754 |
|
BLAKE2b-256 | c1b435fb5ed22973e147fefd88f38ec66dc31e9ffbdcf3e54ee85e5d06ab899b |