We understand your time is valuable, and we stand by our promise of getting you "up and running in 5 minutes." Let's put it to the test! Follow this concise guide for a swift and seamless integration into your workflow.
Execute the following command in your terminal to install the Parble library in your preferred programming language. If you plan using a cURL command, feel free to skip this step.
pip install parble
from parble import ParbleSDK
parble = ParbleSDK(url="https://api.parble.com/v1/YOUR_TENANT_ID", api_key="YOUR_API_KEY")
file = parble.files.post("PATH_TO_YOUR_FILE", inbox_id="INBOX_ID")
print(file)
Easily view your updated usage and automation statistics by refreshing your dashboard screen. For more details about the uploaded file, here are some sample commands to access extra information.
print('ID of the processed file for later retrieval: ', file.id)
print('Number of pages found in the file: ', file.number_of_pages)
print('Number of documents found in the file: ', len(file.documents))
print('Classification of the first document found in the file: ', file.documents[0].classification.document_type)
To explore the full capabilities of Parble, dive into our API documentation and GitHub repository.