Spaces:
Running
Running
File size: 535 Bytes
2a10e9c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
"""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,
}
|