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
*Poetry* is a modern tool that simplifies dependency management and package publishing by using a single `pyproject.toml` file to handle project metadata and dependencies.
@@ -115,8 +114,7 @@ Generally, the SDK will work well with most IDEs out of the box. However, when u
115
114
116
115
## Authentication
117
116
118
-
To use the SDK, you will need a Documenso API key which can be created [here](https://docs.documenso.com/developers/public-api/authentication#creating-an-api-key
119
-
).
117
+
To use the SDK, you will need a Documenso API key which can be created [here](https://docs.documenso.com/developers/public-api/authentication#creating-an-api-key).
120
118
121
119
```python
122
120
import documenso_sdk
@@ -127,6 +125,7 @@ with Documenso(
127
125
api_key=os.getenv("DOCUMENSO_API_KEY", ""),
128
126
) as documenso:
129
127
```
128
+
130
129
<!-- No Authentication [security] -->
131
130
132
131
## Document creation example
@@ -136,15 +135,102 @@ Currently creating a document involves two steps:
136
135
1. Create the document
137
136
2. Upload the PDF
138
137
139
-
This is a temporary measure, in the near future prior to the full release we will merge these two tasks into one request.
138
+
This is a temporary measure, in the near future prior to the full release we will merge these two tasks into one request.
140
139
141
140
Here is a full example of the document creation process which you can copy and run.
142
141
143
-
Note that the function is temporarily called `createV0`, which will be replaced by `create` once we resolve the 2 step workaround.
142
+
Note that the function is temporarily called `create_v0`, which will be replaced by `create` once we resolve the 2 step workaround.
<!-- Start Available Resources and Operations [operations] -->
@@ -376,7 +462,7 @@ looking for the latest version.
376
462
377
463
## Contributions
378
464
379
-
While we value open-source contributions to this SDK, this library is generated programmatically. Any manual changes added to internal files will be overwritten on the next generation.
380
-
We look forward to hearing your feedback. Feel free to open a PR or an issue with a proof of concept and we'll do our best to include it in a future release.
465
+
While we value open-source contributions to this SDK, this library is generated programmatically. Any manual changes added to internal files will be overwritten on the next generation.
466
+
We look forward to hearing your feedback. Feel free to open a PR or an issue with a proof of concept and we'll do our best to include it in a future release.
381
467
382
468
### SDK Created by [Speakeasy](https://www.speakeasy.com/?utm_source=documenso-sdk&utm_campaign=python)
0 commit comments