You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Docusign SDK makes integrating Docusign into your apps and websites a seamless experience.
7
+
8
+
## Table of Contents
9
+
-[Introduction](#introduction)
10
+
-[Installation](#installation)
11
+
* [Version Information](#versionInformation)
12
+
* [Requirements](#requirements)
13
+
* [Compatibility](#compatibility)
14
+
* [Path setup](#pathSetup)
15
+
* [Install via PIP](#pip)
16
+
-[Dependencies](#dependencies)
17
+
-[API Reference](#apiReference)
18
+
-[Code Examples](#codeExamples)
19
+
-[OAuth Implementations](#oauthImplementations)
20
+
-[Changelog](#changeLog)
21
+
-[Support](#support)
22
+
-[License](#license)
23
+
-[Additional Resources](#additionalResources)
24
+
25
+
<aid="introduction"></a>
26
+
## Introduction
27
+
Integrate eSignatures into your application in minutes. The secure and award-winning Docusign eSignature API makes requesting signatures, automating forms, and tracking documents directly from your app easy.
28
+
29
+
<aid="installation"></a>
30
+
## Installation
31
+
This client SDK is provided as open source, which enables you to customize its functionality to suit your particular use case. To do so, download or clone the repository. If the SDK’s given functionality meets your integration needs, or if you’re working through our [code examples](https://developers.docusign.com/docs/esign-rest-api/how-to/) from the [Docusign Developer Center](https://developers.docusign.com/), you merely need to install it by following the instructions below.
8
32
9
-
[Documentation about DocuSign APIs](https://developers.docusign.com/)
This SDK is provided as open source, which enables you to customize its functionality to suit your particular use case. To do so, download or clone the repository. If the SDK’s given functionality meets your integration needs, or if you’re working through our [code examples](https://developers.docusign.com/docs/esign-rest-api/how-to/) from the [DocuSign Developer Center](https://developers.docusign.com/), you merely need to install it by following the instructions below.
20
-
47
+
<aid="pathSetup"></a>
21
48
### Path setup:
22
49
1. Locate your Python installation, also referred to as a **site-packages** folder. This folder is usually labeled in a format of **Python{VersionNumber}**.
2. Add your Python folder’s path to your system as an environment variable.
28
55
**Unix/Linux:**
29
56
1. Type the following command into your console: \
@@ -43,45 +70,58 @@ This SDK is provided as open source, which enables you to customize its function
43
70
</li>
44
71
</ol>
45
72
73
+
46
74
**Note:** If you are still unable to reference Python or pip via your command console, you can also add the path to the **site-packages** folder to the built-in environment variable labeled **Path**, which will take effect the next time you start your machine.
47
75
76
+
<aid="pip"></a>
48
77
### Install via PIP:
49
-
In your command console, type: **pip install docusign-esign**
78
+
In your command console, type: **pip install docusign_esign**
50
79
**Note:** This may require the command console to be elevated. You can accomplish this via sudo in Unix/Linux, or by running the command console as an administrator in Windows.
51
80
52
-
## Dependencies
81
+
<aid="dependencies"></a>
82
+
## SDK Dependencies
53
83
This client has the following external dependencies:
54
84
* certifi v14.05.14+
55
85
* six v1.8.0+
56
86
* python_dateutil v2.5.3+
57
87
* setuptools v21.0.0+
58
88
* urllib3 v1.15.1+
59
-
* jwcrypto v0.4.2+
60
-
* py-oauth2 v0.0.10+
89
+
* PyJWT v2.0.0+
90
+
* cryptography v2.5+
91
+
92
+
<aid="apiReference"></a>
93
+
## API Reference
94
+
You can refer to the API reference [here](https://developers.docusign.com/docs/esign-rest-api/reference/).
61
95
96
+
<aid="codeExamples"></a>
62
97
## Code examples
63
-
You can find on our GitHub a self-executing package of code examples for the eSignature Python SDK, called a [Launcher](https://github.com/docusign/code-examples-python/blob/master/README.md), that demonstrates common use cases. You can also download a version preconfigured for your DocuSign developer account from [Quickstart](https://developers.docusign.com/docs/esign-rest-api/quickstart/). These examples can use either the [Authorization Code Grant](https://developers.docusign.com/esign-rest-api/guides/authentication/oauth2-code-grant) or[JSON Web Token (JWT)](https://developers.docusign.com/esign-rest-api/guides/authentication/oauth2-jsonwebtoken) authentication workflows.
98
+
Explore our GitHub repository for the [Launcher](https://github.com/docusign/code-examples-python/), a self-executing package housing code examples for the eSignature Python SDK. This package showcases several common use cases and their respective source files. Additionally, you can download a version preconfigured for your Docusign developer account from [Quickstart](https://developers.docusign.com/docs/esign-rest-api/quickstart/). These examples support both the [Authorization Code Grant](https://developers.docusign.com/platform/auth/authcode/) and[JSON Web Token (JWT)](https://developers.docusign.com/platform/auth/jwt/) authentication workflows.
64
99
65
100
## OAuth implementations
66
-
For details regarding which type of OAuth grant will work best for your DocuSign integration, see [Choose OAuth Type](https://developers.docusign.com/platform/auth/choose/) in the [DocuSign Developer Center](https://developers.docusign.com/).
101
+
For details regarding which type of OAuth grant will work best for your Docusign integration, see [Choose OAuth Type](https://developers.docusign.com/platform/auth/choose/) in the [Docusign Developer Center](https://developers.docusign.com/).
102
+
103
+
For security purposes, Docusign recommends using the [Authorization Code Grant](https://developers.docusign.com/platform/auth/authcode/) flow.
67
104
68
-
For security purposes, DocuSign recommends using the [Authorization Code Grant](https://developers.docusign.com/esign-rest-api/guides/authentication/oauth2-code-grant) flow.
105
+
<aid="changeLog"></a>
106
+
## Changelog
107
+
You can refer to the complete changelog [here](https://github.com/docusign/docusign-esign-python-client/blob/master/CHANGELOG.md).
69
108
109
+
<aid="support"></a>
70
110
## Support
71
-
Log issues against this client through GitHub. We also have an [active developer community on Stack Overflow](https://stackoverflow.com/questions/tagged/docusignapi).
111
+
Log issues against this client SDK through GitHub. You can also reach out to us through [Docusign Community](https://community.docusign.com/developer-59) and [Stack Overflow](https://stackoverflow.com/questions/tagged/docusignapi).
72
112
113
+
<aid="license"></a>
73
114
## License
74
-
The DocuSign eSignature Python Client SDK is licensed under the [MIT License](https://github.com/docusign/docusign-python-client/blob/master/LICENSE).
115
+
The Docusign eSignature Python Client SDK is licensed under the [MIT License](https://github.com/docusign/docusign-esign-python-client/blob/master/LICENSE).
0 commit comments