{"id":20291660,"url":"https://github.com/blazingdocs/blazingdocs-python","last_synced_at":"2026-04-20T06:03:36.965Z","repository":{"id":62560066,"uuid":"394324732","full_name":"blazingdocs/blazingdocs-python","owner":"blazingdocs","description":"BlazingDocs Python client","archived":false,"fork":false,"pushed_at":"2021-12-07T07:56:16.000Z","size":56,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-14T14:51:37.682Z","etag":null,"topics":["api","csv","doc","document-generation","documents","docx","json","mail-merge","odt","pdf","reports","templates","xml"],"latest_commit_sha":null,"homepage":"https://blazingdocs.com","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/blazingdocs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-08-09T14:34:19.000Z","updated_at":"2022-08-24T09:12:34.000Z","dependencies_parsed_at":"2022-11-03T14:15:21.508Z","dependency_job_id":null,"html_url":"https://github.com/blazingdocs/blazingdocs-python","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blazingdocs%2Fblazingdocs-python","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blazingdocs%2Fblazingdocs-python/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blazingdocs%2Fblazingdocs-python/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blazingdocs%2Fblazingdocs-python/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/blazingdocs","download_url":"https://codeload.github.com/blazingdocs/blazingdocs-python/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241787486,"owners_count":20020101,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api","csv","doc","document-generation","documents","docx","json","mail-merge","odt","pdf","reports","templates","xml"],"created_at":"2024-11-14T15:13:21.091Z","updated_at":"2026-04-20T06:03:31.944Z","avatar_url":"https://github.com/blazingdocs.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# BlazingDocs Python client\nHigh-performance document generation API. Generate documents and reports from СSV, JSON, XML with 99,9% uptime and 24/7 monitoring.\n\n## Installation\n\nRun this line from Terminal:\n\n```\npip install blazingdocs\n```\n\n## Integration basics\n\n### Setup\n\nYou can get your API Key at https://app.blazingdocs.com\n\n```python\nclient = BlazingClient('API-KEY')\n```\n\n### Getting account info\n\n```python\naccount = client.get_account()\n```\n\n### Getting merge templates list\n\n```python\ntemplates = client.get_templates()\n```\n\n### Getting usage info\n\n```python\nusage = client.get_usage()\n```\n\n### Executing merge\n\n```python\nclient = BlazingClient('API-KEY')\n\nparameters = MergeParameters()\nparameters.dataSourceType = DataSourceType.JSON  # data in json format\nparameters.sequence = False  # data is object\nparameters.strict = True  # keep json types\n\nwith open('templates/PO-Template.json', 'r', encoding='utf-8') as f:\n    data = f.read()\n\nwith open('templates/PO-Template.docx', 'rb') as f:\n    file = FormFile('PO-Template.docx')\n    file.content = f.read()\n\noperation = client.merge_with_form_file(\n    data=data,\n    filename='output.pdf',\n    parameters=parameters,\n    template=file\n)\n```\n\n## Documentation\n\nSee more details here https://docs.blazingdocs.com","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblazingdocs%2Fblazingdocs-python","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fblazingdocs%2Fblazingdocs-python","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblazingdocs%2Fblazingdocs-python/lists"}