{"id":46059380,"url":"https://github.com/chekos/datawrapper","last_synced_at":"2026-03-01T11:01:10.397Z","repository":{"id":36474886,"uuid":"227431631","full_name":"chekos/Datawrapper","owner":"chekos","description":"A light-weight wrapper for the Datawrapper API.","archived":false,"fork":false,"pushed_at":"2025-12-23T14:27:25.000Z","size":3151,"stargazers_count":86,"open_issues_count":9,"forks_count":26,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-12-25T04:21:13.440Z","etag":null,"topics":["data-visualization","python"],"latest_commit_sha":null,"homepage":"https://datawrapper.readthedocs.io","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/chekos.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":"chekos"}},"created_at":"2019-12-11T18:18:06.000Z","updated_at":"2025-12-23T14:26:59.000Z","dependencies_parsed_at":"2023-10-15T19:57:32.042Z","dependency_job_id":"d016343b-97c5-417c-b4df-6938517ab4be","html_url":"https://github.com/chekos/Datawrapper","commit_stats":{"total_commits":229,"total_committers":16,"mean_commits":14.3125,"dds":0.74235807860262,"last_synced_commit":"aa1f03b998926596828d36c0549e52984d032bab"},"previous_names":[],"tags_count":38,"template":false,"template_full_name":null,"purl":"pkg:github/chekos/Datawrapper","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chekos%2FDatawrapper","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chekos%2FDatawrapper/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chekos%2FDatawrapper/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chekos%2FDatawrapper/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/chekos","download_url":"https://codeload.github.com/chekos/Datawrapper/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chekos%2FDatawrapper/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29967930,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-01T10:55:55.490Z","status":"ssl_error","status_checked_at":"2026-03-01T10:55:55.175Z","response_time":124,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["data-visualization","python"],"created_at":"2026-03-01T11:01:09.415Z","updated_at":"2026-03-01T11:01:10.293Z","avatar_url":"https://github.com/chekos.png","language":"Python","readme":"# datawrapper\n\nA lightweight Python wrapper for the Datawrapper API\n\n## Features\n\n* Create, get, update, export and delete charts, tables and maps\n* Add data from a `pandas.DataFrame` or a GeoJSON file with one simple call\n* Get, update and delete folders, users and teams.\n* Retrieve lists of recently edited and updated charts\n* Access metadata about your account\n\n## Installation\n\n```bash\n# With `uv` ...\nuv add datawrapper\n\n# or, if you prefer...\npip install datawrapper\n```\n\n## Quick Start\n\nCreate beautiful charts with type-safe, object-oriented Python:\n\n```python\nimport pandas as pd\nimport datawrapper as dw\n\n# Configure a bar chart\nchart = dw.BarChart(\n    title=\"Top Programming Languages 2024\",\n    data=pd.DataFrame({\"Language\": [\"Python\", \"JavaScript\", \"Java\"], \"Users\": [45.3, 38.2, 30.5]}),\n    axis_label_format=dw.NumberFormat.ONE_DECIMAL\n)\n\n# Create and publish (uses DATAWRAPPER_ACCESS_TOKEN environment variable)\nchart.create()\nchart.publish()\n```\nSee the [full documentation](https://datawrapper.readthedocs.io/) for comprehensive guides on all chart types.\n\n### Contributing\n\nClone the repository. Move into the directory on your terminal.\n\nInstall dependencies for development.\n\n```bash\nuv install --all-extras\n```\n\nInstall pre-commit to run a battery of automatic quick fixes against your work.\n\n```bash\nuv run pre-commit install\n```\n\nRun tests with\n\n```bash\nuv run pytest\n```\n\n## 📈 Releases\n\nYou can see the list of available releases on the [GitHub Releases](https://github.com/chekos/datawrapper/releases) page.\n\nWe follow [Semantic Versions](https://semver.org/) specification. When you're ready to make a new release, visit the releases page and create a new entry. Set the tags and press publish. That will trigger a GitHub Action that automatically deploys the code to the Python Package Index.\n\n## License\n\n[![License](https://img.shields.io/github/license/chekos/datawrapper)](https://github.com/chekos/datawrapper/blob/master/LICENSE)\n\nThis project is licensed under the terms of the `MIT` license. See [LICENSE](https://github.com/chekos/datawrapper/blob/master/LICENSE) for more details.\n\n## Citation\n\n```\n@misc{datawrapper,\n  author = {chekos},\n  title = {A light-weight python wrapper for the Datawrapper API (v3). While it is not developed by Datawrapper officially, you can use it with your API credentials from datawrapper.de},\n  year = {2021},\n  publisher = {GitHub},\n  journal = {GitHub repository},\n  howpublished = {\\url{https://github.com/chekos/datawrapper}}\n}\n```\n","funding_links":["https://github.com/sponsors/chekos"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchekos%2Fdatawrapper","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchekos%2Fdatawrapper","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchekos%2Fdatawrapper/lists"}