Skip to content

Commit 890ce6b

Browse files
author
Olena Harkusha
committed
Merge branch 'master' into python_ds_esign_arr
* master: update readme updating requirement to resolve security alert from dependabot changing github link in readme updates to keep example 1 outside of the eSignature/examples file Fix broken links to the source files on GitHub Update eg023_idv_authentication.html Update README.md Update README.md Update README.md Update README.md Update PAYMENTS_INSTALLATION.md making default eSignature over Rooms
2 parents 1d07408 + 2ace0e0 commit 890ce6b

5 files changed

Lines changed: 11 additions & 6 deletions

File tree

README.md

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

33
### Github repo: [code-examples-python](./)
4+
5+
This GitHub repo includes code examples for both the DocuSign eSignature REST API as well as the DocuSign Rooms API. To use the Rooms API code example, modify the EXAMPLES_API_TYPE setting at the end of the ds_config.py file. Set 'Rooms' to True and 'ESignature' to False.
6+
7+
**Note:** to use the Rooms API you must also [create your DocuSign Developer Account for Rooms](https://developers.docusign.com/docs/rooms-api/rooms101/create-account).
8+
49
## Introduction
510
This repo is a Python 3 application that demonstrates:
611

@@ -213,7 +218,7 @@ From there you should be able to run the launcher using **python run.py** then s
213218

214219
#### Payments code example
215220
To use the payments example, create a
216-
test payments gateway for your developer sandbox account.
221+
test payments gateway for your developer account.
217222

218223
See the
219224
[PAYMENTS_INSTALLATION.md](https://github.com/docusign/code-examples-python/blob/master/PAYMENTS_INSTALLATION.md)

app/ds_config_sample.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"gateway_account_id": "{DS_PAYMENT_GATEWAY_ID}",
2525
"gateway_name": "stripe",
2626
"gateway_display_name": "Stripe",
27-
"github_example_url": "https://github.com/docusign/code-examples-python/tree/master/app/",
27+
"github_example_url": "https://github.com/docusign/code-examples-python/tree/master/app/eSignature/examples/",
2828
"documentation": "", # Use an empty string to indicate no documentation path.
2929
"quickstart": "false"
3030
}

app/eg001_embedded_signing/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def get_view():
4545
"eg001_embedded_signing.html",
4646
title="Embedded Signing Ceremony",
4747
source_file=path.basename(path.dirname(__file__)) + "/controller.py",
48-
source_url=DS_CONFIG["github_example_url"] + path.basename(path.dirname(__file__)) + "/controller.py",
48+
source_url="https://github.com/docusign/code-examples-python/tree/master/app/" + path.basename(path.dirname(__file__)) + "/controller.py",
4949
documentation=DS_CONFIG["documentation"] + eg,
5050
show_doc=DS_CONFIG["documentation"],
5151
signer_name=DS_CONFIG["signer_name"],

app/templates/eg023_idv_authentication.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ <h4>23. Requiring Id Verification for a Recipient</h4>
4141
<button type="submit" class="btn btn-docu">Submit</button>
4242
</form>
4343
{% else %}
44-
<b>ID verification is available to develop API integration in the DocuSign Developer (demo) accounts,
45-
but is not enabled by default. To enable IDV in your Developer accounts and/or production accounts,
44+
<b>ID verification is available to develop API integrations in the DocuSign Developer account,
45+
but is not enabled by default. To enable IDV in your Developer account and/or production account,
4646
contact your DocuSign Account Manager or Partner Account Manager</b>
4747
{% endif %}
4848

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ certifi==2019.9.11
33
cffi==1.13.2
44
chardet==3.0.4
55
Click==7.0
6-
cryptography==2.8
6+
cryptography==3.2
77
docusign-esign==3.6.0
88
docusign-rooms==1.0.0b1
99
Flask==1.1.1

0 commit comments

Comments
 (0)