Skip to content

Commit c7f630a

Browse files
committed
2 parents 84ad1d9 + ab6ef39 commit c7f630a

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Python Launcher Code Examples
22

3-
### Github repo: [code-examples-python](./)
3+
### GitHub repo: [code-examples-python](./)
44

5-
This GitHub repo includes code examples for the DocuSign eSignature REST API, Rooms API, and Click API. To switch between API code examples, modify the EXAMPLES_API_TYPE setting in the ds_config.py file. Change the value of either `ESignature`, `Rooms`, `Click`, or `Monitor` to `True` to use the corresponding API. Set only one API type to `True` and set the remaining to `False`.
5+
This GitHub repo includes code examples for the DocuSign eSignature REST API, Rooms API, Click API, and Monitor API. To switch between API code examples, modify the `EXAMPLES_API_TYPE` setting in the ds_config.py file. Change the value of either `ESignature`, `Rooms`, `Click`, or `Monitor` to `True` to use the corresponding API. Set only one API type to `True` and set the remaining to `False`.
66

7-
If none of the API types are set to true, the DocuSign eSignature REST API code examples will be shown. If multiple API types are set to true, only the first will be shown.
7+
If none of the API types are set to `True`, the DocuSign eSignature REST API code examples will be shown. If multiple API types are set to `True`, only the first will be shown.
88

99

1010
## Introduction
@@ -75,7 +75,7 @@ For a list of code examples that use the Monitor API, select the Python tab unde
7575
1. Extract the Quickstart ZIP file or download or clone the code-examples-python repository.
7676
1. In your command-line environment, switch to the folder:
7777
`cd <Quickstart folder>` or `cd code-examples-python`
78-
1. To install dependencies, run `pip3 install -r requirements.txt` (or pipenv can be used).
78+
1. To install dependencies, run: `pip3 install -r requirements.txt` (or pipenv can be used)
7979
1. To configure the launcher for [Authorization Code Grant](https://developers.docusign.com/platform/auth/authcode/) authentication, create a copy of the file app/ds_config_sample.py and save the copy as app/ds_config.py.
8080
1. Add your integration key. On the [Apps and Keys](https://admindemo.docusign.com/authenticate?goTo=apiIntegratorKey) page, under **Apps and Integration Keys**, choose the app to use, then select **Actions > Edit**. Under **General Info**, copy the **Integration Key** GUID and save it in ds_config.py as your `ds_client_id`.
8181
1. Generate a secret key, if you don’t already have one. Under **Authentication**, select **+ ADD SECRET KEY**. Copy the secret key and save it in ds_config.py as your `ds_client_secret`.
@@ -93,7 +93,7 @@ Also, in order to select JSON Web Token authentication in the launcher, in app/d
9393

9494
1. Extract the Quickstart ZIP file or download or clone the code-examples-python repository.
9595
1. In your command-line environment, switch to the folder: `cd <Quickstart folder>` or `cd code-examples-python`
96-
1. To install dependencies, run `pip3 install -r requirements.txt` (or pipenv can be used).
96+
1. To install dependencies, run: `pip3 install -r requirements.txt` (or pipenv can be used)
9797
1. To configure the launcher for [JWT Grant](https://developers.docusign.com/platform/auth/jwt/) authentication, create a copy of the file app/ds_config_sample.py and save the copy as app/ds_config.py.
9898
1. Add your API Username. On the [Apps and Keys](https://admindemo.docusign.com/authenticate?goTo=apiIntegratorKey) page, under **My Account Information**, copy the **API Username** GUID and save it in ds_config.py as your `ds_impersonated_user_id`.
9999
1. Add your integration key. On the [Apps and Keys](https://admindemo.docusign.com/authenticate?goTo=apiIntegratorKey) page, under **Apps and Integration Keys**, choose the app to use, then select **Actions > Edit**. Under **General Info**, copy the **Integration Key** GUID and save it in ds_config.py as your `ds_client_id`.
@@ -111,7 +111,7 @@ Also, in order to select JSON Web Token authentication in the launcher, in app/d
111111

112112
## Payments code example
113113

114-
To use the payments code example, create a test payment gateway on the [**Payments**](https://admindemo.docusign.com/authenticate?goTo=payments) page in your developer account. See [Configure a payment gateway](./PAYMENTS_INSTALLATION.md) for details.
114+
To use the payments code example, create a test payment gateway on the [Payments](https://admindemo.docusign.com/authenticate?goTo=payments) page in your developer account. See [Configure a payment gateway](./PAYMENTS_INSTALLATION.md) for details.
115115

116116
Once you've created a payment gateway, save the **Gateway Account ID** GUID to ds_config.py.
117117

0 commit comments

Comments
 (0)