Python: module for plotting Gantt charts

Viewed 30679

Is there a good Python module for plotting Gantt Charts? I've tried CairoPlot, but it produces buggy results for complex data sets and lacks many configuration options.

Code samples and images are highly appreciated.

Thanks,

Adam

6 Answers

Checkout Python Gantt

Python-Gantt make possible to easily draw gantt charts from Python. Output format is SVG.

enter image description here

you can install through pip

pip install python-gantt

python-gantt doesn't work It raised this error after trying module import AttributeError: module 'gantt' has no attribute 'define_font_attributes'

Related