Releases: carboneio/carbone-sdk-python
Releases · carboneio/carbone-sdk-python
v1.1.1
v1.0.8
Learn more on the changelog: https://github.com/carboneio/carbone-sdk-python/blob/master/CHANGELOG.md
v1.0.7
v1.0.6
v1.0.5
Update to Carbone version 3
v1.0.4 update readme
Render report - fix error checking
Improvements - get a unique report name from the API
It is possible to get a unique report name from the render function. It returns a tuple of 2 elements: the generated report as bytes and a unique report name. For example before:
report_bytes = csdk.render(template_id, json_data)now with a unique report name:
report_bytes, unique_report_name = csdk.render(template_id, json_data)First release
It is possible to interact with the Carbone Render API with the following methods:
- add_template: upload a template and return a templateID
- get_template: return an uploaded template from a templateID
- delete_template: delete a template from a templateID
- render: render a report from a templateID
- generate_template_id: Pre compute the templateID