Metadata-Version: 2.0
Name: GooCalendar
Version: 0.3
Summary: A calendar widget for GTK using PyGoocanvas
Home-page: https://goocalendar.tryton.org/
Author: Cédric Krier
Author-email: cedric.krier@b2ck.com
License: GPL-2
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: X11 Applications :: GTK
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2 :: Only
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Widget Sets

GooCalendar
===========

A calendar widget for GTK using PyGoocanvas

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)


