Metadata-Version: 2.1
Name: DocxpressoSDK
Version: 1.0.1
Summary: SDK package
Home-page: https://docxpresso.com
Author: Docxpresso
Author-email: eduardo@docxpresso.com
License: MIT
Keywords: Docxpresso SDK
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Information Technology
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
License-File: LICENCE.txt

# Docxpresso

This is the python version of Docxpresso SDK


## Install
### Prerequisites
- Python 3.9

### Install Package
```
pip install DocxpressoSDK
```

## Quick Start
The following is the minimum needed code to generate a one time link. Use this example, and modify the data[] variables:

```python

import DocxpressoSDK
# Introduce your credentials:
# 'pKey' is the apikey associated with your Docxpresso installation
# 'docxpressoInstalattion' is the URL of your Docxpresso instance, i.e. https://xxxx.docxpresso.net

Example = DocxpressoSDK.Utils({'pKey':'*********','docxpressoInstallation':'***********'})

# If we need, for example, to regenerate a document you need to provide:
# 'id' that corresponds to the template id
# 'token' or unique identifier of the document to be regenerated
data = {}
data['id'] = 1111
data['token'] = '*******'

link = Example.regenerateDocument(data)
print(link)

```

Once you execute this code, it will generate a one time link to regenerate a document associated with that template id and that usage token.

Change Log
==========

1.0.0 (4/10/2022)
------------------    
- first Release
