Quickstart
This guide shows you how to use the basic emtellisplit client to submit data for processing to the emtellisplit engine.
Prerequisites
- A trial or license agreement from us to use the API
- An emtellisplit API account with the correct permissions allowed by our support team.
- A username and password along with an IAM URL, and/or an API key created by yourself or our support team.
- The emtellisplit API URL to which you’ll be submitting your reports. The URL will be something like this
https://<your-prep-endpoint>/ - AWS S3 bucket(s) or Azure blob storage container(s) and corresponding access credentials, given to you by your own support team, for your input files and output files. The credentials must grant read, write, and list object access. (OPTIONAL) Temporary credentials (STS for AWS, SAS token for Azure) may also be used, but generating them is outside the scope of this client’s functionality.
Step 1. Download the emtellisplit client
Download the latest emtellisplit client package here.
Extract the zip file.
Step 2. Install the emtellisplit client
Check the Prep client system requirements.
Optionally create a virtual environment and then install the Prep client.
The emtellisplit-client should now be installed. Check by printing out the client version number as follows:
Step 3. Configure the emtellisplit client
Set up the following in a .toml file. Note: by default the client reads from ./emtellisplit-client-config.toml when the config file path is not specified.
Please make sure that you test that your cloud object storage account works and your API key is accepted by the specified Prep server.
Step 4. Process a Document
We will now process this report example-data/sample.pdf by calling the emtellisplit-client as follows, assuming you have the client config file in the same directory as where you are using emtellisplit-client
First, upload a file to your input bucket with the appropriate extension. This can be done using your cloud object storage’s web interface, command line, or using emtellisplit-client.
There will now be a file called sample_in_cloud.pdf inside your cloud object storage that can be processed.
Which will process the document using the API server (creating a job identifier) and produce outputs inside your output cloud object storage. The types of output files and their contents will depend on the processing options specified in the client configuration. See processing options.
The outputs will have the following structure
<job_id>/<original_document_stem>/...
For the example, if the API server created a job_id of fccb1b7993a34de3838338c02f42a99f, all outputs would be prefixed with
fccb1b7993a34de3838338c02f42a99f/sample_in_cloud/
For more advanced usage and description of processing options, see advanced usage.

