Metadata-Version: 2.4
Name: GooCalendar
Version: 1.0.0
Summary: A calendar widget for GTK
Project-URL: homepage, https://www.tryton.org/
Project-URL: documentation, https://docs.tryton.org/goocalendar
Project-URL: changelog, https://code.tryton.org/goocalendar/-/blob/branch/default/CHANGELOG
Project-URL: forum, https://discuss.tryton.org/tags/goocalendar
Project-URL: issues, https://bugs.tryton.org/goocalendar
Project-URL: repository, https://code.tryton.org/goocalendar
Author: Antoine Smolders, Samuel Abels <http://debain.org>
Author-email: Bastian Germann <bage@debian.org>, Cédric Krier <cedric.krier@b2ck.com>
Maintainer-email: Tryton <foundation@tryton.org>
License-Expression: GPL-2.0-or-later
License-File: COPYRIGHT
License-File: LICENSE
Keywords: GTK,calendar,widget
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: X11 Applications :: GTK
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Widget Sets
Requires-Python: >=3.9
Description-Content-Type: text/x-rst

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

A calendar widget for GTK

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)
