Spaces:
Running
Running
| """Configuration and constants for the Datawrapper MCP server.""" | |
| from datawrapper import ( | |
| AreaChart, | |
| ArrowChart, | |
| BarChart, | |
| ColumnChart, | |
| LineChart, | |
| MultipleColumnChart, | |
| ScatterPlot, | |
| StackedBarChart, | |
| ) | |
| # Map of chart type names to their Pydantic classes | |
| CHART_CLASSES = { | |
| "bar": BarChart, | |
| "line": LineChart, | |
| "area": AreaChart, | |
| "arrow": ArrowChart, | |
| "column": ColumnChart, | |
| "multiple_column": MultipleColumnChart, | |
| "scatter": ScatterPlot, | |
| "stacked_bar": StackedBarChart, | |
| } | |