https://github.com/havocesp/python-yad
Yad GUI dialogs Python wrapper.
https://github.com/havocesp/python-yad
dialogs gui python-gui yad zenity
Last synced: 3 months ago
JSON representation
Yad GUI dialogs Python wrapper.
- Host: GitHub
- URL: https://github.com/havocesp/python-yad
- Owner: havocesp
- License: gpl-3.0
- Created: 2019-01-31T14:01:03.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2024-10-29T03:06:52.000Z (about 1 year ago)
- Last Synced: 2024-11-12T23:28:37.357Z (about 1 year ago)
- Topics: dialogs, gui, python-gui, yad, zenity
- Language: Python
- Homepage:
- Size: 237 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGELOG.rst
- Contributing: CONTRIBUTING.rst
- License: LICENSE.txt
Awesome Lists containing this project
README
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()
You can even check out the test application 'gdie'(Gnome-desktop-item-editor) in the terminal.
>>> gdie
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://gitlab.com/dvenkatsagar/python-yad.git
>>> cd python-yad/python-yad
>>> 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