easyask is a minimal demonstration package intended to show how chart options can be generated programmatically.
from easyask.tools import chart
# Build an option for a bar chart
option = chart.get_chart_options([
['Matcha Latte', 43.3, 85.8, 93.7],
['Milk Tea', 83.1, 73.4, 55.1],
['Cheese Cocoa', 86.4, 65.2, 82.5],
['Walnut Brownie', 72.4, 53.9, 39.1]
], ['product', '2015', '2016', '2017'])
print(option)This project requires Python 3.12 or newer, as specified in pyproject.toml.
To see the package in action, run the demonstration module:
python -m easyaskExample scripts are also available in the examples/ directory.
PYTHONPATH=. uv run pytest