@@ -9,50 +9,50 @@ This repo is a Python 3 application that demonstrates:
99When the token expires, the user is asked to re-authenticate.
1010The ** refresh token** is not used in this example.
11111 . ** 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.
15151 . ** 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.
19191 . ** 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.
22221 . ** 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.
25251 . ** 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.
28281 . ** 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 )
30301 . ** 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.
34341 . ** 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 )
36361 . ** 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 )
38381 . ** 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.
41411 . ** 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.
45451 . ** 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 )
47471 . ** 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.
54541 . ** 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.
87871 . 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
9191test payments gateway for your developer sandbox account.
9292
9393See the
0 commit comments