easygui


Nameeasygui JSON
Version 0.98.3 PyPI version JSON
download
home_pagehttps://github.com/robertlugg/easygui
SummaryEasyGUI is a module for very simple, very easy GUI programming in Python. EasyGUI is different from other GUI generators in that EasyGUI is NOT event-driven. Instead, all GUI interactions are invoked by simple function calls.
upload_time2022-04-01 13:15:50
maintainer
docs_urlhttps://pythonhosted.org/easygui/
authoreasygui developers and Stephen Ferg
requires_python
licenseBSD
keywords gui linux windows graphical user interface
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI
coveralls test coverage No coveralls.
            Project in Maintainance
=======================

Hi everyone.  There hasn't been much activity but thankfully we have a new revision.  Thank you contributors and thank you Stephen Ferg for creating EasyGui.

You might also consider the following alternatives:

 - https://github.com/aroberge/easygui_qt
 - https://github.com/ponty/psidialogs

For those who wish to contribute you are welcome to fork this respository.  Or, take a look at the alternatives and contribute there.


Kind Regards, Robert

EasyGUI
=======

EasyGUI is a module for very simple, very easy GUI programming in Python. EasyGUI is different from other GUI
libraries in that EasyGUI is NOT event-driven. Instead, all GUI interactions are invoked by simple function calls.

EasyGUI runs on Python 2 and 3, and does not have any dependencies beyond python and Tk. Linux Python 2 users will have to run `sudo apt-get install python-tk` and Linux Python 3 users will have to run `sudo apt-get install python3-tk` to install Tkinter.

Example Usage
-------------

    >>> import easygui
    >>> easygui.ynbox('Shall I continue?', 'Title', ('Yes', 'No'))
    1
    >>> easygui.msgbox('This is a basic message box.', 'Title Goes Here')
    'OK'
    >>> easygui.buttonbox('Click on your favorite flavor.', 'Favorite Flavor', ('Chocolate', 'Vanilla', 'Strawberry'))
    'Chocolate'

To see demo programs using EasyGUI, call the `easygui.egdemo()` function.

Full documentation is always available.

For the most-recent production version:
<http://easygui.readthedocs.org/en/master/>.

For our develop version which will be released next:
<http://easygui.readthedocs.org/en/develop>.

0.98.3
========================================================================
Update collections.abc import location (old location was deprecated since version 3.3, removed in version 3.10)
See: https://docs.python.org/3.9/library/collections.html#module-collections for details
Add some unit test coverage and test automation for TravisCI.

0.98.2
========================================================================
Several updates and fixes thanks to Al and others.

0.98.0
========================================================================
This is an exciting time for easygui.  We continue to make good progress with refactoring as
well as some enhancements and bug fixes here and there.

We would like to welcome Juanjo Denis-Corrales to the team.  He is responsible for lots of good new work
this release.  Of course we appreciate the work of everyone who contributed.

NOTE: I decided in this release to change the API a bit.  Please consult the function documentation for details.

BUG FIXES
---------
 * Made changes guessing at fixes to any IDLE problems.  Please report any problems found.

ENHANCEMENTS
------------
 * Refactored the easygui.py file into several smaller files to improve our ability to manage the code
 * Added callbacks to allow for more dynamic dialogs.  See the docs for usage.
 * Added class access to dialogs so properties may be changed.

KNOWN ISSUES
------------
 * There were previous issues when using easygui with the IDLE IDE.  I hope I resolved these problems, however,
   I've never actually been able to repeat them.  Please report any problems found in github.

OTHER CHANGES
-------------
 * Centralized the Python 2 versus Python 3 "compatibility layer" into boxes/utils.py


0.97.4
========================================================================
This is a minor bug-fix release to address python 3 import errors.

0.97.3
========================================================================
We are happy to release version 0.97.3 of easygui.  The intent of this release is to address some basic
functionality issues as well as improve easygui in the ways people have asked.

Robert Lugg (me) was searching for a GUI library for my python work.  I saw easygui and liked very much its
paradigm.  Stephen Ferg, the creator and developer of easygui, graciously allowed me to start development
back up.  With the help of Alexander Zawadzki, Horst Jens, and others I set a goal to release before the
end of 2014.

We rely on user feedback so please bring up problems, ideas, or just say how you are using easygui.

BUG FIXES
---------
 * sourceforge #4: easygui docs contain bad references to easygui_pydoc.html
 * sourceforge #6: no index.html in docs download file.  Updated to sphinx which as autolinking.
 * sourceforge #8: unicode issues with file*box.  Fixed all that I knew how.
 * sourceforge #12: Cannot Exit with 'X'.  Now X and escape either return "cancel_button", if set, or None

ENHANCEMENTS
------------
 * Added ability to specify default_choice and cancel_choice for button widgets (See API docs)
 * True and False are returned instead of 1 and 0 for several boxes
 * Allow user to map keyboard keys to buttons by enclosing a hotkey in square braces like: "Pick [M]e", which would assign
   keyboard key M to that button.  Double braces hide that character, and keysyms are allowed:

     [[q]]Exit    Would show Exit on the button, and the button would be controlled by the q key

     [<F1>]Help   Would show Help on the button, and the button would be controlled by the F1 function key

   NOTE: We are still working on the exact syntax of these key mappings as Enter, space, and arrows are already being used.
 * Escape and the windows 'X' button always work in buttonboxes.  Those return None in that case.
 * sourceforge #9: let fileopenbox open multiple files.  Added optional argument 'multiple'
 * Location of dialogs on screen is preserved.  This isn't perfect yet, but now, at least, the dialogs don't
   always reset to their default position!
 * added some, but not all of the bugs/enhancements developed by Robbie Brook:
   http://all-you-need-is-tech.blogspot.com/2013/01/improving-easygui-for-python.html

KNOWN ISSUES
------------
 * In the documentation, there were previous references to issues when using the IDLE IDE.  I haven't
   experienced those, but also didn't do anything to fix them, so they may still be there.  Please report
   any problems and we'll try to address them
 * I am fairly new to contributing to open source, so I don't understand packaging, pypi, etc.  There
   are likely problems as well as better ways to do things.  Again, I appreciate any help or guidance.

Other Changes (that you likely don't care about)
------------------------------------------------
 * Restructured loading of image files to try PIL first throw error if file doesn't exist.
 * Converted docs to sphinx with just a bit of doctest.  Most content was retained from the old site, so
   there might be some redundancies still.  Please make any suggested improvements.
 * Set up a GitHub repository for development: https://github.com/robertlugg/easygui
 * Improved output/packaging for Debian distribution

EasyGui is licensed under what is generally known as
the "modified BSD license" (aka "revised BSD", "new BSD", "3-clause BSD").
This license is GPL-compatible but less restrictive than GPL.



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/robertlugg/easygui",
    "name": "easygui",
    "maintainer": "",
    "docs_url": "https://pythonhosted.org/easygui/",
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "gui linux windows graphical user interface",
    "author": "easygui developers and Stephen Ferg",
    "author_email": "robert.lugg@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/cc/ad/e35f7a30272d322be09dc98592d2f55d27cc933a7fde8baccbbeb2bd9409/easygui-0.98.3.tar.gz",
    "platform": null,
    "description": "Project in Maintainance\n=======================\n\nHi everyone.  There hasn't been much activity but thankfully we have a new revision.  Thank you contributors and thank you Stephen Ferg for creating EasyGui.\n\nYou might also consider the following alternatives:\n\n - https://github.com/aroberge/easygui_qt\n - https://github.com/ponty/psidialogs\n\nFor those who wish to contribute you are welcome to fork this respository.  Or, take a look at the alternatives and contribute there.\n\n\nKind Regards, Robert\n\nEasyGUI\n=======\n\nEasyGUI is a module for very simple, very easy GUI programming in Python. EasyGUI is different from other GUI\nlibraries in that EasyGUI is NOT event-driven. Instead, all GUI interactions are invoked by simple function calls.\n\nEasyGUI runs on Python 2 and 3, and does not have any dependencies beyond python and Tk. Linux Python 2 users will have to run `sudo apt-get install python-tk` and Linux Python 3 users will have to run `sudo apt-get install python3-tk` to install Tkinter.\n\nExample Usage\n-------------\n\n    >>> import easygui\n    >>> easygui.ynbox('Shall I continue?', 'Title', ('Yes', 'No'))\n    1\n    >>> easygui.msgbox('This is a basic message box.', 'Title Goes Here')\n    'OK'\n    >>> easygui.buttonbox('Click on your favorite flavor.', 'Favorite Flavor', ('Chocolate', 'Vanilla', 'Strawberry'))\n    'Chocolate'\n\nTo see demo programs using EasyGUI, call the `easygui.egdemo()` function.\n\nFull documentation is always available.\n\nFor the most-recent production version:\n<http://easygui.readthedocs.org/en/master/>.\n\nFor our develop version which will be released next:\n<http://easygui.readthedocs.org/en/develop>.\n\n0.98.3\n========================================================================\nUpdate collections.abc import location (old location was deprecated since version 3.3, removed in version 3.10)\nSee: https://docs.python.org/3.9/library/collections.html#module-collections for details\nAdd some unit test coverage and test automation for TravisCI.\n\n0.98.2\n========================================================================\nSeveral updates and fixes thanks to Al and others.\n\n0.98.0\n========================================================================\nThis is an exciting time for easygui.  We continue to make good progress with refactoring as\nwell as some enhancements and bug fixes here and there.\n\nWe would like to welcome Juanjo Denis-Corrales to the team.  He is responsible for lots of good new work\nthis release.  Of course we appreciate the work of everyone who contributed.\n\nNOTE: I decided in this release to change the API a bit.  Please consult the function documentation for details.\n\nBUG FIXES\n---------\n * Made changes guessing at fixes to any IDLE problems.  Please report any problems found.\n\nENHANCEMENTS\n------------\n * Refactored the easygui.py file into several smaller files to improve our ability to manage the code\n * Added callbacks to allow for more dynamic dialogs.  See the docs for usage.\n * Added class access to dialogs so properties may be changed.\n\nKNOWN ISSUES\n------------\n * There were previous issues when using easygui with the IDLE IDE.  I hope I resolved these problems, however,\n   I've never actually been able to repeat them.  Please report any problems found in github.\n\nOTHER CHANGES\n-------------\n * Centralized the Python 2 versus Python 3 \"compatibility layer\" into boxes/utils.py\n\n\n0.97.4\n========================================================================\nThis is a minor bug-fix release to address python 3 import errors.\n\n0.97.3\n========================================================================\nWe are happy to release version 0.97.3 of easygui.  The intent of this release is to address some basic\nfunctionality issues as well as improve easygui in the ways people have asked.\n\nRobert Lugg (me) was searching for a GUI library for my python work.  I saw easygui and liked very much its\nparadigm.  Stephen Ferg, the creator and developer of easygui, graciously allowed me to start development\nback up.  With the help of Alexander Zawadzki, Horst Jens, and others I set a goal to release before the\nend of 2014.\n\nWe rely on user feedback so please bring up problems, ideas, or just say how you are using easygui.\n\nBUG FIXES\n---------\n * sourceforge #4: easygui docs contain bad references to easygui_pydoc.html\n * sourceforge #6: no index.html in docs download file.  Updated to sphinx which as autolinking.\n * sourceforge #8: unicode issues with file*box.  Fixed all that I knew how.\n * sourceforge #12: Cannot Exit with 'X'.  Now X and escape either return \"cancel_button\", if set, or None\n\nENHANCEMENTS\n------------\n * Added ability to specify default_choice and cancel_choice for button widgets (See API docs)\n * True and False are returned instead of 1 and 0 for several boxes\n * Allow user to map keyboard keys to buttons by enclosing a hotkey in square braces like: \"Pick [M]e\", which would assign\n   keyboard key M to that button.  Double braces hide that character, and keysyms are allowed:\n\n     [[q]]Exit    Would show Exit on the button, and the button would be controlled by the q key\n\n     [<F1>]Help   Would show Help on the button, and the button would be controlled by the F1 function key\n\n   NOTE: We are still working on the exact syntax of these key mappings as Enter, space, and arrows are already being used.\n * Escape and the windows 'X' button always work in buttonboxes.  Those return None in that case.\n * sourceforge #9: let fileopenbox open multiple files.  Added optional argument 'multiple'\n * Location of dialogs on screen is preserved.  This isn't perfect yet, but now, at least, the dialogs don't\n   always reset to their default position!\n * added some, but not all of the bugs/enhancements developed by Robbie Brook:\n   http://all-you-need-is-tech.blogspot.com/2013/01/improving-easygui-for-python.html\n\nKNOWN ISSUES\n------------\n * In the documentation, there were previous references to issues when using the IDLE IDE.  I haven't\n   experienced those, but also didn't do anything to fix them, so they may still be there.  Please report\n   any problems and we'll try to address them\n * I am fairly new to contributing to open source, so I don't understand packaging, pypi, etc.  There\n   are likely problems as well as better ways to do things.  Again, I appreciate any help or guidance.\n\nOther Changes (that you likely don't care about)\n------------------------------------------------\n * Restructured loading of image files to try PIL first throw error if file doesn't exist.\n * Converted docs to sphinx with just a bit of doctest.  Most content was retained from the old site, so\n   there might be some redundancies still.  Please make any suggested improvements.\n * Set up a GitHub repository for development: https://github.com/robertlugg/easygui\n * Improved output/packaging for Debian distribution\n\nEasyGui is licensed under what is generally known as\nthe \"modified BSD license\" (aka \"revised BSD\", \"new BSD\", \"3-clause BSD\").\nThis license is GPL-compatible but less restrictive than GPL.\n\n\n",
    "bugtrack_url": null,
    "license": "BSD",
    "summary": "EasyGUI is a module for very simple, very easy GUI programming in Python.  EasyGUI is different from other GUI generators in that EasyGUI is NOT event-driven.  Instead, all GUI interactions are invoked by simple function calls.",
    "version": "0.98.3",
    "split_keywords": [
        "gui",
        "linux",
        "windows",
        "graphical",
        "user",
        "interface"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "md5": "19b940b202fb24b280d52289a3e8a700",
                "sha256": "33498710c68b5376b459cd3fc48d1d1f33822139eb3ed01defbc0528326da3ba"
            },
            "downloads": -1,
            "filename": "easygui-0.98.3-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "19b940b202fb24b280d52289a3e8a700",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": null,
            "size": 92655,
            "upload_time": "2022-04-01T13:15:49",
            "upload_time_iso_8601": "2022-04-01T13:15:49.568271Z",
            "url": "https://files.pythonhosted.org/packages/8e/a7/b276ff776533b423710a285c8168b52551cb2ab0855443131fdc7fd8c16f/easygui-0.98.3-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "e8bb25ebdd7c32cbe2a7c510b4082b2e",
                "sha256": "d653ff79ee1f42f63b5a090f2f98ce02335d86ad8963b3ce2661805cafe99a04"
            },
            "downloads": -1,
            "filename": "easygui-0.98.3.tar.gz",
            "has_sig": false,
            "md5_digest": "e8bb25ebdd7c32cbe2a7c510b4082b2e",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 85583,
            "upload_time": "2022-04-01T13:15:50",
            "upload_time_iso_8601": "2022-04-01T13:15:50.752249Z",
            "url": "https://files.pythonhosted.org/packages/cc/ad/e35f7a30272d322be09dc98592d2f55d27cc933a7fde8baccbbeb2bd9409/easygui-0.98.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2022-04-01 13:15:50",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "robertlugg",
    "github_project": "easygui",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": false,
    "lcname": "easygui"
}
        
Elapsed time: 0.02776s