$ pip install cradl
Sign up for free here and download API credentials to use this SDK. Read more about authenticating to the API here
import json
from cradl import Client
client = Client()
models = client.list_models()['models'] # List all models available
model_id = models[0]['modelId'] # Get ID of first model in list
document = client.create_document('path/to/document.pdf')
prediction = client.create_prediction(document['documentId'], model_id=model_id)
print(json.dumps(prediction, indent=2))
$ pip install -r requirements.txt
$ pip install -r requirements.ci.txt
$ make prism-start
$ python -m pytest