معرفی شرکت ها


carbone-sdk-1.0.5


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Carbone Render Python SDK to generate reports easily (PDF, docx, xlsx, ods, odt, ...) from a JSON
ویژگی مقدار
سیستم عامل OS Independent
نام فایل carbone-sdk-1.0.5
نام carbone-sdk
نسخه کتابخانه 1.0.5
نگهدارنده []
ایمیل نگهدارنده []
نویسنده CarboneIO
ایمیل نویسنده support@carbone.io
آدرس صفحه اصلی https://github.com/carboneio/carbone-sdk-python
آدرس اینترنتی https://pypi.org/project/carbone-sdk/
مجوز Apache-2.0
# Carbone Render Python SDK [![GitHub release (latest by date)](https://img.shields.io/github/v/release/carboneio/carbone-sdk-python?style=for-the-badge&logo=python)](https://pypi.org/project/carbone-sdk) [![Documentation](https://img.shields.io/badge/documentation-yes-brightgreen.svg?style=for-the-badge)](./API-REFERENCE.md) Python SDK to use Carbone Render easily. > Carbone is a report generator (PDF, DOCX, XLSX, ODT, PPTX, ODS, XML, CSV...) using templates and JSON data. [Learn more about the Carbone ecosystem](https://carbone.io/documentation.html). ### 🔖 [API REFERENCE](./API-REFERENCE.md) ## Install ```sh pip install carbone-sdk ``` ## Usage You can copy and run the code bellow to try. ```python import carbone_sdk # SDK constructor # The access token can be passed as an argument to the constructor CarboneSDK # Or by the environment variable "CARBONE_TOKEN", use the command "export CARBONE_TOKEN=secret-token" csdk = carbone_sdk.CarboneSDK("secret-token") # The template ID, it could be an ODT, DOCX, PPTX, XLSX, ODS file, etc... template_id = "template" json_data = { "data": { "id": 42, "date": 1492012745, "company": { "name": "myCompany", "address": "here", "city": "Notfar", "postalCode": 123456 }, "customer": { "name":"myCustomer", "address":"there", "city":"Faraway", "postalCode":654321 }, "products":[ {"name":"product 1","priceUnit":0.1,"quantity":10,"priceTotal":1} ], "total":140 }, "convertTo":"pdf" } # Render and return the report as bytes and a unique report name report_bytes, unique_report_name = csdk.render(template_id, json_data) fd = open(unique_report_name, "wb") fd.write(report_bytes) fd.close() # voila 🎉 ``` ## Documentation - [API REFERENCE](./API-REFERENCE.md) ## Tests ### Tests - Run with Makefile Install the test packages: ```shell $ make install ``` To run the tests: ```shell $ make test ``` To uninstall the test packages: ```shell $ make uninstall ``` ### Tests - Run manually Install: ``` $ pip install pytest $ pip install requests_mock ``` To run all the test (-v for verbose output): ```shell $ pytest -v tests ``` To run a groupe of tests: ```shell $ pytest -v ./tests/test_carbone_sdk.py::TestRender ``` To run a single test: ```shell $ pytest -v ./tests/test_carbone_sdk.py::TestRender::test_render_a_report_error_file_missing ``` To run a single test with all the DEBUG: ``` $ pytest ./tests/test_carbone_sdk.py::TestRender::test_render_a_report_from_an_existing_template_id --log-cli-level=10 ``` If you need to test the generation of templateId, you can use the nodejs `main.js` to test the sha256 generation. ```bash $ node ./tests/main.js ``` ## 👤 Author - [**@steevepay**](https://github.com/steevepay) ## 🤝 Contributing Contributions, issues and feature requests are welcome! Feel free to check [issues page](https://github.com/carboneio/carbone-sdk-python/issues). ## Show your support Give a ⭐️ if this project helped you!


زبان مورد نیاز

مقدار نام
>=3.6 Python


نحوه نصب


نصب پکیج whl carbone-sdk-1.0.5:

    pip install carbone-sdk-1.0.5.whl


نصب پکیج tar.gz carbone-sdk-1.0.5:

    pip install carbone-sdk-1.0.5.tar.gz