├── .gitattributes ├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST ├── MANIFEST.in ├── README.md ├── README.txt ├── bld.bat ├── developer_information ├── BUILD INSTRUCTIONS.txt ├── DEVELOPER_NOTES.txt └── Git-branching-model.png ├── easygui ├── __init__.py ├── __main__.py ├── boxes │ ├── __init__.py │ ├── about.py │ ├── base_boxes.py │ ├── button_box.py │ ├── choice_box.py │ ├── demo.py │ ├── derived_boxes.py │ ├── diropen_box.py │ ├── egstore.py │ ├── fileboxsetup.py │ ├── fileopen_box.py │ ├── filesave_box.py │ ├── fillable_box.py │ ├── global_state.py │ ├── multi_fillable_box.py │ ├── text_box.py │ └── utils.py ├── easygui.py ├── python_and_check_logo.gif ├── python_and_check_logo.jpg ├── python_and_check_logo.png └── zzzzz.gif ├── meta.yaml ├── setup.cfg ├── setup.py ├── sphinx ├── Makefile ├── __init__.py ├── _static │ ├── python-logo-master-v3-TM-flattened.png │ ├── registration_system │ │ ├── easygui_demo_registration_app.zip │ │ ├── screenshot_register_main.png │ │ └── screenshot_register_show.png │ └── tutorial │ │ ├── python-logo.gif │ │ ├── screenshot2.png │ │ ├── screenshot3.png │ │ ├── screenshot4.png │ │ ├── screenshot_buttonbox-with-image.gif │ │ ├── screenshot_buttonbox_with_image.png │ │ ├── screenshot_ccbox.png │ │ ├── screenshot_choicebox.png │ │ ├── screenshot_choicebox_icecream.png │ │ ├── screenshot_choicebox_monofonts_and_exit_button.gif │ │ ├── screenshot_choicebox_with_multiple_buttons.gif │ │ ├── screenshot_codebox_vista.png │ │ ├── screenshot_exceptionbox_vista.png │ │ ├── screenshot_fileopenbox_vista.png │ │ ├── screenshot_msgbox.png │ │ ├── screenshot_multchoicebox.png │ │ ├── screenshot_multenterbox.png │ │ ├── screenshot_multenterbox_vista.png │ │ └── screenshot_passwordbox.png ├── api.rst ├── conf.py ├── cookbook.rst ├── faq.rst ├── index.rst ├── links.rst ├── make.bat ├── support.rst └── tutorial.rst ├── test-requirements.txt ├── test ├── __init__.py └── test_travis.py └── test_cases ├── SimpleCv.py ├── The Pirates of the Caribean Game.py ├── __init__.py ├── audio ├── intro.mp3 └── intro.ogg ├── books.xml ├── dice.py ├── file_open_box.py ├── flash_multiple_rb.py ├── geo_quiz.py ├── gps_auto_update.py ├── hex_entry.py ├── images ├── cross.gif ├── daffy duck.gif ├── dave.gif ├── globe.jpg ├── mickey.gif ├── minnie.gif └── tick.gif ├── multienter_backspace.py ├── multiple_disney_images.py ├── pi.jpg ├── result.png ├── test_easygui.py ├── text2binary.py └── xml_parse.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/MANIFEST -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/README.md -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/README.txt -------------------------------------------------------------------------------- /bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/bld.bat -------------------------------------------------------------------------------- /developer_information/BUILD INSTRUCTIONS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/developer_information/BUILD INSTRUCTIONS.txt -------------------------------------------------------------------------------- /developer_information/DEVELOPER_NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/developer_information/DEVELOPER_NOTES.txt -------------------------------------------------------------------------------- /developer_information/Git-branching-model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/developer_information/Git-branching-model.png -------------------------------------------------------------------------------- /easygui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/easygui/__init__.py -------------------------------------------------------------------------------- /easygui/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/easygui/__main__.py -------------------------------------------------------------------------------- /easygui/boxes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /easygui/boxes/about.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/easygui/boxes/about.py -------------------------------------------------------------------------------- /easygui/boxes/base_boxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/easygui/boxes/base_boxes.py -------------------------------------------------------------------------------- /easygui/boxes/button_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/easygui/boxes/button_box.py -------------------------------------------------------------------------------- /easygui/boxes/choice_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/easygui/boxes/choice_box.py -------------------------------------------------------------------------------- /easygui/boxes/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/easygui/boxes/demo.py -------------------------------------------------------------------------------- /easygui/boxes/derived_boxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/easygui/boxes/derived_boxes.py -------------------------------------------------------------------------------- /easygui/boxes/diropen_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/easygui/boxes/diropen_box.py -------------------------------------------------------------------------------- /easygui/boxes/egstore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/easygui/boxes/egstore.py -------------------------------------------------------------------------------- /easygui/boxes/fileboxsetup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/easygui/boxes/fileboxsetup.py -------------------------------------------------------------------------------- /easygui/boxes/fileopen_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/easygui/boxes/fileopen_box.py -------------------------------------------------------------------------------- /easygui/boxes/filesave_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/easygui/boxes/filesave_box.py -------------------------------------------------------------------------------- /easygui/boxes/fillable_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/easygui/boxes/fillable_box.py -------------------------------------------------------------------------------- /easygui/boxes/global_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/easygui/boxes/global_state.py -------------------------------------------------------------------------------- /easygui/boxes/multi_fillable_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/easygui/boxes/multi_fillable_box.py -------------------------------------------------------------------------------- /easygui/boxes/text_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/easygui/boxes/text_box.py -------------------------------------------------------------------------------- /easygui/boxes/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/easygui/boxes/utils.py -------------------------------------------------------------------------------- /easygui/easygui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/easygui/easygui.py -------------------------------------------------------------------------------- /easygui/python_and_check_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/easygui/python_and_check_logo.gif -------------------------------------------------------------------------------- /easygui/python_and_check_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/easygui/python_and_check_logo.jpg -------------------------------------------------------------------------------- /easygui/python_and_check_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/easygui/python_and_check_logo.png -------------------------------------------------------------------------------- /easygui/zzzzz.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/easygui/zzzzz.gif -------------------------------------------------------------------------------- /meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/meta.yaml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal=1 3 | 4 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/setup.py -------------------------------------------------------------------------------- /sphinx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/sphinx/Makefile -------------------------------------------------------------------------------- /sphinx/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /sphinx/_static/python-logo-master-v3-TM-flattened.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/sphinx/_static/python-logo-master-v3-TM-flattened.png -------------------------------------------------------------------------------- /sphinx/_static/registration_system/easygui_demo_registration_app.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/sphinx/_static/registration_system/easygui_demo_registration_app.zip -------------------------------------------------------------------------------- /sphinx/_static/registration_system/screenshot_register_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/sphinx/_static/registration_system/screenshot_register_main.png -------------------------------------------------------------------------------- /sphinx/_static/registration_system/screenshot_register_show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/sphinx/_static/registration_system/screenshot_register_show.png -------------------------------------------------------------------------------- /sphinx/_static/tutorial/python-logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/sphinx/_static/tutorial/python-logo.gif -------------------------------------------------------------------------------- /sphinx/_static/tutorial/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/sphinx/_static/tutorial/screenshot2.png -------------------------------------------------------------------------------- /sphinx/_static/tutorial/screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/sphinx/_static/tutorial/screenshot3.png -------------------------------------------------------------------------------- /sphinx/_static/tutorial/screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/sphinx/_static/tutorial/screenshot4.png -------------------------------------------------------------------------------- /sphinx/_static/tutorial/screenshot_buttonbox-with-image.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/sphinx/_static/tutorial/screenshot_buttonbox-with-image.gif -------------------------------------------------------------------------------- /sphinx/_static/tutorial/screenshot_buttonbox_with_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/sphinx/_static/tutorial/screenshot_buttonbox_with_image.png -------------------------------------------------------------------------------- /sphinx/_static/tutorial/screenshot_ccbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/sphinx/_static/tutorial/screenshot_ccbox.png -------------------------------------------------------------------------------- /sphinx/_static/tutorial/screenshot_choicebox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/sphinx/_static/tutorial/screenshot_choicebox.png -------------------------------------------------------------------------------- /sphinx/_static/tutorial/screenshot_choicebox_icecream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/sphinx/_static/tutorial/screenshot_choicebox_icecream.png -------------------------------------------------------------------------------- /sphinx/_static/tutorial/screenshot_choicebox_monofonts_and_exit_button.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/sphinx/_static/tutorial/screenshot_choicebox_monofonts_and_exit_button.gif -------------------------------------------------------------------------------- /sphinx/_static/tutorial/screenshot_choicebox_with_multiple_buttons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/sphinx/_static/tutorial/screenshot_choicebox_with_multiple_buttons.gif -------------------------------------------------------------------------------- /sphinx/_static/tutorial/screenshot_codebox_vista.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/sphinx/_static/tutorial/screenshot_codebox_vista.png -------------------------------------------------------------------------------- /sphinx/_static/tutorial/screenshot_exceptionbox_vista.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/sphinx/_static/tutorial/screenshot_exceptionbox_vista.png -------------------------------------------------------------------------------- /sphinx/_static/tutorial/screenshot_fileopenbox_vista.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/sphinx/_static/tutorial/screenshot_fileopenbox_vista.png -------------------------------------------------------------------------------- /sphinx/_static/tutorial/screenshot_msgbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/sphinx/_static/tutorial/screenshot_msgbox.png -------------------------------------------------------------------------------- /sphinx/_static/tutorial/screenshot_multchoicebox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/sphinx/_static/tutorial/screenshot_multchoicebox.png -------------------------------------------------------------------------------- /sphinx/_static/tutorial/screenshot_multenterbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/sphinx/_static/tutorial/screenshot_multenterbox.png -------------------------------------------------------------------------------- /sphinx/_static/tutorial/screenshot_multenterbox_vista.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/sphinx/_static/tutorial/screenshot_multenterbox_vista.png -------------------------------------------------------------------------------- /sphinx/_static/tutorial/screenshot_passwordbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/sphinx/_static/tutorial/screenshot_passwordbox.png -------------------------------------------------------------------------------- /sphinx/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/sphinx/api.rst -------------------------------------------------------------------------------- /sphinx/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/sphinx/conf.py -------------------------------------------------------------------------------- /sphinx/cookbook.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/sphinx/cookbook.rst -------------------------------------------------------------------------------- /sphinx/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/sphinx/faq.rst -------------------------------------------------------------------------------- /sphinx/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/sphinx/index.rst -------------------------------------------------------------------------------- /sphinx/links.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/sphinx/links.rst -------------------------------------------------------------------------------- /sphinx/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/sphinx/make.bat -------------------------------------------------------------------------------- /sphinx/support.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/sphinx/support.rst -------------------------------------------------------------------------------- /sphinx/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/sphinx/tutorial.rst -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/test-requirements.txt -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_travis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/test/test_travis.py -------------------------------------------------------------------------------- /test_cases/SimpleCv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/test_cases/SimpleCv.py -------------------------------------------------------------------------------- /test_cases/The Pirates of the Caribean Game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/test_cases/The Pirates of the Caribean Game.py -------------------------------------------------------------------------------- /test_cases/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_cases/audio/intro.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/test_cases/audio/intro.mp3 -------------------------------------------------------------------------------- /test_cases/audio/intro.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/test_cases/audio/intro.ogg -------------------------------------------------------------------------------- /test_cases/books.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/test_cases/books.xml -------------------------------------------------------------------------------- /test_cases/dice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/test_cases/dice.py -------------------------------------------------------------------------------- /test_cases/file_open_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/test_cases/file_open_box.py -------------------------------------------------------------------------------- /test_cases/flash_multiple_rb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/test_cases/flash_multiple_rb.py -------------------------------------------------------------------------------- /test_cases/geo_quiz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/test_cases/geo_quiz.py -------------------------------------------------------------------------------- /test_cases/gps_auto_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/test_cases/gps_auto_update.py -------------------------------------------------------------------------------- /test_cases/hex_entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/test_cases/hex_entry.py -------------------------------------------------------------------------------- /test_cases/images/cross.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/test_cases/images/cross.gif -------------------------------------------------------------------------------- /test_cases/images/daffy duck.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/test_cases/images/daffy duck.gif -------------------------------------------------------------------------------- /test_cases/images/dave.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/test_cases/images/dave.gif -------------------------------------------------------------------------------- /test_cases/images/globe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/test_cases/images/globe.jpg -------------------------------------------------------------------------------- /test_cases/images/mickey.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/test_cases/images/mickey.gif -------------------------------------------------------------------------------- /test_cases/images/minnie.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/test_cases/images/minnie.gif -------------------------------------------------------------------------------- /test_cases/images/tick.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/test_cases/images/tick.gif -------------------------------------------------------------------------------- /test_cases/multienter_backspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/test_cases/multienter_backspace.py -------------------------------------------------------------------------------- /test_cases/multiple_disney_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/test_cases/multiple_disney_images.py -------------------------------------------------------------------------------- /test_cases/pi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/test_cases/pi.jpg -------------------------------------------------------------------------------- /test_cases/result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/test_cases/result.png -------------------------------------------------------------------------------- /test_cases/test_easygui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/test_cases/test_easygui.py -------------------------------------------------------------------------------- /test_cases/text2binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/test_cases/text2binary.py -------------------------------------------------------------------------------- /test_cases/xml_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertlugg/easygui/HEAD/test_cases/xml_parse.py --------------------------------------------------------------------------------