Skip to content

Commit b4f5330

Browse files
authored
Update README
1 parent 4a9532f commit b4f5330

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
PandaDoc SDK spans a broad range of functionality to help you build incredible documents automation experiences inside your product.
33

44
## Docs
5-
- [Official public API documentation](https://developers.pandadoc.com/reference/about)
5+
[Official public API documentation](https://developers.pandadoc.com/reference/about)
66

77
## Requirements
88
python >= 3.6
@@ -25,28 +25,28 @@ import pandadoc_client
2525
```python
2626
from pprint import pprint
2727

28-
import openapi_client
29-
from openapi_client.api import templates_api
28+
import pandadoc_client
29+
from pandadoc_client.api import templates_api
3030

3131
# Configure API key authorization: apiKey
3232
api_key = "YOUR_API_KEY"
3333

3434
# Defining the host is optional and defaults to https://api.pandadoc.com
3535
# See configuration.py for a list of all supported configuration parameters.
36-
cfg = openapi_client.Configuration(
36+
cfg = pandadoc_client.Configuration(
3737
host = "https://api.pandadoc.com",
3838
api_key={"apiKey": f"API-Key {api_key}"},
3939
)
4040

4141
# Enter a context with an instance of the API client
42-
with openapi_client.ApiClient(cfg) as api_client:
42+
with pandadoc_client.ApiClient(cfg) as api_client:
4343
# Create an instance of the API class
4444
api_instance = templates_api.TemplatesApi(api_client)
4545

4646
try:
4747
resp = api_instance.list_templates(tag="doe-inc-proposals")
4848
pprint(resp)
49-
except openapi_client.ApiException as e:
49+
except pandadoc_client.ApiException as e:
5050
pprint("Exception when calling TemplatesApi->list_templates: %s\n" % e)
5151
```
5252

@@ -107,4 +107,4 @@ Class | Method | HTTP request | Description
107107
*TemplatesApi* | [**list_templates**](docs/TemplatesApi.md#list_templates) | **GET** /public/v1/templates | List Templates
108108

109109
## License
110-
SDK is licensed under the following [License](LICENSE).
110+
SDK is licensed under the following [License](LICENSE).

0 commit comments

Comments
 (0)