Zenipy

Requirements

  • Python 2 or 3
  • GTK+3
  • python3-gi or python-gi (for python2)

Installation

Install using pip :

$ pip install zenipy

Or clone the repo :

$ git clone https://github.com/poulp/zenipy.git
$ cd ./zenipy
$ python setup.py install

Example

Simple dialog :

from zenipy import calendar
result = calendar(title="Awesome Calendar",text="Your birthday ?")
print(result)

This code show a calendar dialog :

_images/screen.png

And display the result :

$ python test.py
$ (year=2017, month=6, day=4)

API