-
Notifications
You must be signed in to change notification settings - Fork 0
Mirror of goocalendar
License
tryton/goocalendar
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
GooCalendar
===========
A calendar widget for GTK using GooCanvas
Nutshell
--------
Example usage::
>>> import datetime
>>> import goocalendar
>>> event_store = goocalendar.EventStore()
>>> calendar = goocalendar.Calendar(event_store)
>>> event = goocalendar.Event('Birthday',
... datetime.date.today(),
... bg_color='lightgreen')
>>> event_store.add(event)