A lightweight Python wrapper for the Datawrapper API
Project description
datawrapper
A lightweight Python wrapper for the Datawrapper API
Features
- Create, get, update, export and delete charts, tables and maps
- Add data from a
pandas.DataFrameor a GeoJSON file with one simple call - Get, update and delete folders, users and teams.
- Retrieve lists of recently edited and updated charts
- Access metadata about your account
Installation
# With `uv` ...
uv add datawrapper
# or, if you prefer...
pip install datawrapper
Quick Start
Create beautiful charts with type-safe, object-oriented Python:
import pandas as pd
import datawrapper as dw
# Configure a bar chart
chart = dw.BarChart(
title="Top Programming Languages 2024",
data=pd.DataFrame({"Language": ["Python", "JavaScript", "Java"], "Users": [45.3, 38.2, 30.5]}),
axis_label_format=dw.NumberFormat.ONE_DECIMAL
)
# Create and publish (uses DATAWRAPPER_ACCESS_TOKEN environment variable)
chart.create()
chart.publish()
See the full documentation for comprehensive guides on all chart types.
Contributing
Clone the repository. Move into the directory on your terminal.
Install dependencies for development.
uv install --all-extras
Install pre-commit to run a battery of automatic quick fixes against your work.
uv run pre-commit install
Run tests with
uv run pytest
📈 Releases
You can see the list of available releases on the GitHub Releases page.
We follow Semantic Versions 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.
License
This project is licensed under the terms of the MIT license. See LICENSE for more details.
Citation
@misc{datawrapper,
author = {chekos},
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},
year = {2021},
publisher = {GitHub},
journal = {GitHub repository},
howpublished = {\url{https://github.com/chekos/datawrapper}}
}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file datawrapper-2.0.16.tar.gz.
File metadata
- Download URL: datawrapper-2.0.16.tar.gz
- Upload date:
- Size: 548.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d13ee9aa3d289582980c354a5931a357cf8fe42ced099ef690096fa56cfb9f7e
|
|
| MD5 |
4865db2533b5cd83851583a698bdb4f7
|
|
| BLAKE2b-256 |
32c33c833c320bbbbebfbd46398782d16b07c6cccf73b43036a7758748a13c74
|
File details
Details for the file datawrapper-2.0.16-py3-none-any.whl.
File metadata
- Download URL: datawrapper-2.0.16-py3-none-any.whl
- Upload date:
- Size: 102.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
55665c87d6f929e7d2c0563671cbb613b67eaa9601e1eb8fdbc8e8d650fafaae
|
|
| MD5 |
c55f9b0fb78f5f5ef5c4afe56773cbb8
|
|
| BLAKE2b-256 |
52e62d9c4f93a4ddc07dbe189cc32a6f510319ada4e8b129555362b83648b19f
|