Metadata-Version: 2.0
Name: yad
Version: 0.9.2
Summary: A python interface for the Yad program
Home-page: https://bitbucket.org/dvenkatsagar/python-yad.git
Author: Sagar D V
Author-email: dvenkatsagar@gmail.com
License: MIT
Download-URL: https://dvenkatsagar@bitbucket.org/dvenkatsagar/python-yad/get/master.zip
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Requires-Dist: pexpect (>=3.3)

Python Yad project
==================

python-yad is interface to yad for python. Inspired by the PyZenity Project.

YAD is a program that will display GTK+ dialogs, and return (either in the return code, or on standard output) the users input.
This allows you to present information, and ask for information from the user, from all manner of shell scripts.
YAD is the fork of Zenity program.


**YAD source page**:	http://sourceforge.net/projects/yad-dialog/


The API is very simple which has a main class known as YAD.

Example:

>>> from yad import YAD
>>> yad = YAD()
>>> yad.Calendar()

Requirements
============
- Python 3.2 and above
- pexpect module
- yad program

Installation
============
Can be installed by using pip:

>>> sudo python3 -m pip install yad

or by manual installation:

>>> git clone https://bitbucket.org/dvenkatsagar/python-yad.git
>>> python3 setup.py build
>>> python3 setup.py install

Contact Us
==========
If you guys encounter any bugs, or issues. please contact me via email:

:Authors: Sagar D V <dvenkatsagar@gmail.com>

:Version: 0.9.2


