dugres
dugres

Reputation: 13087

Is there good planning GUI component (widget) for python?

I'm working on a scheduling app and looking for a calendar, timeline or other planning related GUI component for Python.

Are you aware of any ?

Upvotes: 1

Views: 516

Answers (3)

Etienne
Etienne

Reputation: 12580

Your question is not really clear so I can't know your needs but, maybe, you should check faces, a powerful and free project management tool that you "program" in python.

Upvotes: 1

Nick T
Nick T

Reputation: 26717

wxPython has two, CalendarCtrl and Calendar. The former offers a more "native" feel, at least on Windows. If you download the wxPython Demo program you can see both in action.

Upvotes: 0

Aaron Digulla
Aaron Digulla

Reputation: 328556

Have a look at PyQt. It has a calendar widget and the wrapper allows you to modify the rendering of the calendar.

Upvotes: 2

Related Questions