Skip to content

Commit a4effab

Browse files
committed
Update README.md
1 parent 8bb98c6 commit a4effab

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -9,50 +9,50 @@ This repo is a Python 3 application that demonstrates:
99
When the token expires, the user is asked to re-authenticate.
1010
The **refresh token** is not used in this example.
1111
1. **Embedded Signing Ceremony.**
12-
[Source.](https://github.com/docusign/eg-03-node-auth-code-grant/blob/master/app/eg001_embedded_signing.py)
12+
[Source.](https://github.com/docusign/eg-03-python-auth-code-grant/blob/master/app/eg001_embedded_signing.py)
1313
This example sends an envelope, and then uses an embedded signing ceremony for the first signer.
1414
With embedded signing, the DocuSign signing ceremony is initiated from your website.
1515
1. **Send an envelope with a remote (email) signer and cc recipient.**
16-
[Source.](https://github.com/docusign/eg-03-node-auth-code-grant/blob/master/app/eg002_signing_via_email.py)
16+
[Source.](https://github.com/docusign/eg-03-python-auth-code-grant/blob/master/app/eg002_signing_via_email.py)
1717
The envelope includes a pdf, Word, and HTML document.
1818
Anchor text ([AutoPlace](https://support.docusign.com/en/guides/AutoPlace-New-DocuSign-Experience)) is used to position the signing fields in the documents.
1919
1. **List envelopes in the user's account.**
20-
[Source.](https://github.com/docusign/eg-03-node-auth-code-grant/blob/master/app/eg003_list_envelopes.py)
20+
[Source.](https://github.com/docusign/eg-03-python-auth-code-grant/blob/master/app/eg003_list_envelopes.py)
2121
The envelopes' current status is included.
2222
1. **Get an envelope's basic information.**
23-
[Source.](https://github.com/docusign/eg-03-node-auth-code-grant/blob/master/app/eg004_envelope_info.py)
23+
[Source.](https://github.com/docusign/eg-03-python-auth-code-grant/blob/master/app/eg004_envelope_info.py)
2424
The example lists the basic information about an envelope, including its overall status.
2525
1. **List an envelope's recipients**
26-
[Source.](https://github.com/docusign/eg-03-node-auth-code-grant/blob/master/app/eg005_envelope_recipients.py)
26+
[Source.](https://github.com/docusign/eg-03-python-auth-code-grant/blob/master/app/eg005_envelope_recipients.py)
2727
Includes current recipient status.
2828
1. **List an envelope's documents.**
29-
[Source.](https://github.com/docusign/eg-03-node-auth-code-grant/blob/master/app/eg006_envelope_docs.py)
29+
[Source.](https://github.com/docusign/eg-03-python-auth-code-grant/blob/master/app/eg006_envelope_docs.py)
3030
1. **Download an envelope's documents.**
31-
[Source.](https://github.com/docusign/eg-03-node-auth-code-grant/blob/master/app/eg007_envelope_get_doc.py)
31+
[Source.](https://github.com/docusign/eg-03-python-auth-code-grant/blob/master/app/eg007_envelope_get_doc.py)
3232
The example can download individual
3333
documents, the documents concatenated together, or a zip file of the documents.
3434
1. **Programmatically create a template.**
35-
[Source.](https://github.com/docusign/eg-03-node-auth-code-grant/blob/master/app/eg008_create_template.py)
35+
[Source.](https://github.com/docusign/eg-03-python-auth-code-grant/blob/master/app/eg008_create_template.py)
3636
1. **Send an envelope using a template.**
37-
[Source.](https://github.com/docusign/eg-03-node-auth-code-grant/blob/master/app/eg009_use_template.py)
37+
[Source.](https://github.com/docusign/eg-03-python-auth-code-grant/blob/master/app/eg009_use_template.py)
3838
1. **Send an envelope and upload its documents with multpart binary transfer.**
39-
[Source.](https://github.com/docusign/eg-03-node-auth-code-grant/blob/master/app/eg010_send_binary_docs.py)
39+
[Source.](https://github.com/docusign/eg-03-python-auth-code-grant/blob/master/app/eg010_send_binary_docs.py)
4040
Binary transfer is 33% more efficient than using Base64 encoding.
4141
1. **Embedded sending.**
42-
[Source.](https://github.com/docusign/eg-03-node-auth-code-grant/blob/master/app/eg011_embedded_sending.py)
42+
[Source.](https://github.com/docusign/eg-03-python-auth-code-grant/blob/master/app/eg011_embedded_sending.py)
4343
Embeds the DocuSign web tool (NDSE) in your web app to finalize or update
4444
the envelope and documents before they are sent.
4545
1. **Embedded DocuSign web tool (NDSE).**
46-
[Source.](https://github.com/docusign/eg-03-node-auth-code-grant/blob/master/app/eg012_embedded_console.py)
46+
[Source.](https://github.com/docusign/eg-03-python-auth-code-grant/blob/master/app/eg012_embedded_console.py)
4747
1. **Embedded Signing Ceremony from a template with an added document.**
48-
[Source.](https://github.com/docusign/eg-03-node-auth-code-grant/blob/master/app/eg013_add_doc_to_template.py)
48+
[Source.](https://github.com/docusign/eg-03-python-auth-code-grant/blob/master/app/eg013_add_doc_to_template.py)
4949
This example sends an envelope based on a template.
5050
In addition to the template's document(s), the example adds an
5151
additional document to the envelope by using the
5252
[Composite Templates](https://developers.docusign.com/esign-rest-api/guides/features/templates#composite-templates)
5353
feature.
5454
1. **Payments example: an order form, with online payment by credit card.**
55-
[Source.](https://github.com/docusign/eg-03-node-auth-code-grant/blob/master/app/eg014_collect_payment.py)
55+
[Source.](https://github.com/docusign/eg-03-python-auth-code-grant/blob/master/app/eg014_collect_payment.py)
5656

5757
## Installation
5858

@@ -87,7 +87,7 @@ The **refresh token** is not used in this example.
8787
1. Open a browser to **http://localhost:5000**
8888

8989
#### Payments code example
90-
To use the payments example, create a
90+
To use the payments example, create a
9191
test payments gateway for your developer sandbox account.
9292

9393
See the

0 commit comments

Comments
 (0)