How to get a Gantt chart using python or pyqt

I am working on an asset management system to handle assets, resources and tasks
I want to have a gantt diagram in my system

I am using python 2.6 and pyqt. Is there (already done python library diagram)? which may work well with pyqt.

Or should I make my own widgets for this? Please advice.

+5
source share
2 answers

Check out the faces project . It uses small Python scripts to define tasks and dependencies and generates a series of Gantt and other project management graphs.

0
source

All Articles