Reputation: 13087
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
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
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
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