An API wrapper written in Python to interact with HelloSign's API (http://www.hellosign.com)
Project description
Hellosign Python SDK
-------------------
[](https://travis-ci.org/minhdanh/hellosign-python-sdk)
[](https://coveralls.io/r/minhdanh/hellosign-python-sdk)
[](http://landscape.io/github/minhdanh/hellosign-python-sdk/master)
[](https://pypi.python.org/pypi/hellosign-python-sdk/)
[](https://pypi.python.org/pypi/hellosign-python-sdk/)
[](https://gemnasium.com/minhdanh/hellosign-python-sdk)
An API wrapper written in Python to interact with HelloSign's API (http://www.hellosign.com)
Note: This is not the final Readme, and the package is not ready yet. It will be ready when it's ready (of course).
## Installation
Install using `easy_install`:
````sh
easy_install hellosign-python-sdk
````
Install using `pip`:
````sh
pip install hellosign-python-sdk
````
## Configuration
In your application, import `HSClient`:
````python
from hellosign_python_sdk.hsclient import HSClient
````
Then create a HSClient object and pass authentication information to initialize it:
````python
# Initialize HSClient using email and password
client = HSClient(api_email="api_user@example.com", api_password="your_password")
# Initialize HSClient using api key
client = HSClient(api_key="your_api_key")
# Initialize HSClient using api token
client = HSClient(api_accesstoken="your_api_access_token", api_accesstokentype="your_api_access_token_type")
````
Note: In case you initialize the HSClient with all the above credentials, the priority order is as follow: api_accesstoken & api_accesstokentype, api_key, then api_email and api_password
## Usage
### Account
#### Get current account information
````python
client.get_account_info()
````
The account information is then stored in `client.account`. For example, to print the `email_address` of your account:
````python
print client.account.email_address
````
#### Update your account information
````python
client.account.callback_url = "https://www.example.com/callback"
client.update_account_info()
````
#### Create a new HelloSign account
````python
new_account = client.create_account("new_user@example.com", "aL0ngL0ngPa55w0rd")
````
### Signature Request
#### Get a Signature Request
````python
sr = client.get_signature_request("fa5c8a0b0f492d768749333ad6fcc214c111e967")
print sr.requester_email_address
print sr.signature_request_id
````
#### Get a list of your Signature Requests
````python
sr_list = client.get_signature_request_list()
# Print out the name of the signers in every signature request
for sr in sr_list:
print sr.signatures[0]['signer_name']
````
#### Send a Signature Request
````python
files = ["NDA.pdf", "AppendixA.pdf"]
signers = [{"name": "Jack", "email_address": "jack@example.com"}, {"name": "Jill", "email_address": "jill@example.com"}]
cc_email_addresses = ["lawyer@hellosign.com", "lawler@example.com"]
# Send a signature request with uploaded files
signature_request = client.send_signature_request(test_mode="1", files=None, file_urls=["http://www.example.com/download/sample.pdf"], title="NDA with Acme Co.", subject="The NDA we talked about", message="Please sign this NDA and then we can discuss more. Let me know if you have any questions.", signing_redirect_url="", signers=signers, cc_email_addresses=cc_email_addresses)
# Send a signature request with remote files
signature_request = client.send_signature_request(test_mode="1", files=files, file_urls=None, title="NDA with Acme Co.", subject="The NDA we talked about", message="Please sign this NDA and then we can discuss more. Let me know if you have any questions.", signing_redirect_url="", signers=signers, cc_email_addresses=cc_email_addresses)
````
-------------------
[](https://travis-ci.org/minhdanh/hellosign-python-sdk)
[](https://coveralls.io/r/minhdanh/hellosign-python-sdk)
[](http://landscape.io/github/minhdanh/hellosign-python-sdk/master)
[](https://pypi.python.org/pypi/hellosign-python-sdk/)
[](https://pypi.python.org/pypi/hellosign-python-sdk/)
[](https://gemnasium.com/minhdanh/hellosign-python-sdk)
An API wrapper written in Python to interact with HelloSign's API (http://www.hellosign.com)
Note: This is not the final Readme, and the package is not ready yet. It will be ready when it's ready (of course).
## Installation
Install using `easy_install`:
````sh
easy_install hellosign-python-sdk
````
Install using `pip`:
````sh
pip install hellosign-python-sdk
````
## Configuration
In your application, import `HSClient`:
````python
from hellosign_python_sdk.hsclient import HSClient
````
Then create a HSClient object and pass authentication information to initialize it:
````python
# Initialize HSClient using email and password
client = HSClient(api_email="api_user@example.com", api_password="your_password")
# Initialize HSClient using api key
client = HSClient(api_key="your_api_key")
# Initialize HSClient using api token
client = HSClient(api_accesstoken="your_api_access_token", api_accesstokentype="your_api_access_token_type")
````
Note: In case you initialize the HSClient with all the above credentials, the priority order is as follow: api_accesstoken & api_accesstokentype, api_key, then api_email and api_password
## Usage
### Account
#### Get current account information
````python
client.get_account_info()
````
The account information is then stored in `client.account`. For example, to print the `email_address` of your account:
````python
print client.account.email_address
````
#### Update your account information
````python
client.account.callback_url = "https://www.example.com/callback"
client.update_account_info()
````
#### Create a new HelloSign account
````python
new_account = client.create_account("new_user@example.com", "aL0ngL0ngPa55w0rd")
````
### Signature Request
#### Get a Signature Request
````python
sr = client.get_signature_request("fa5c8a0b0f492d768749333ad6fcc214c111e967")
print sr.requester_email_address
print sr.signature_request_id
````
#### Get a list of your Signature Requests
````python
sr_list = client.get_signature_request_list()
# Print out the name of the signers in every signature request
for sr in sr_list:
print sr.signatures[0]['signer_name']
````
#### Send a Signature Request
````python
files = ["NDA.pdf", "AppendixA.pdf"]
signers = [{"name": "Jack", "email_address": "jack@example.com"}, {"name": "Jill", "email_address": "jill@example.com"}]
cc_email_addresses = ["lawyer@hellosign.com", "lawler@example.com"]
# Send a signature request with uploaded files
signature_request = client.send_signature_request(test_mode="1", files=None, file_urls=["http://www.example.com/download/sample.pdf"], title="NDA with Acme Co.", subject="The NDA we talked about", message="Please sign this NDA and then we can discuss more. Let me know if you have any questions.", signing_redirect_url="", signers=signers, cc_email_addresses=cc_email_addresses)
# Send a signature request with remote files
signature_request = client.send_signature_request(test_mode="1", files=files, file_urls=None, title="NDA with Acme Co.", subject="The NDA we talked about", message="Please sign this NDA and then we can discuss more. Let me know if you have any questions.", signing_redirect_url="", signers=signers, cc_email_addresses=cc_email_addresses)
````
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
File details
Details for the file hellosign-python-sdk-0.1.6.tar.gz.
File metadata
- Download URL: hellosign-python-sdk-0.1.6.tar.gz
- Upload date:
- Size: 16.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6b09936274711d202cab5468d555b0753f1e2c6474806c80a67fb1842916e0a9
|
|
| MD5 |
72c253f1e1d933331a6c3803232d1800
|
|
| BLAKE2b-256 |
943f75f1e1f2ca0d7965deb3332f5a614c13cf125de1ca44018361469acb60f9
|