Questions tagged [easygui]

EasyGUI is a module for very simple, very easy GUI programming in the Python programming language.

EasyGUI is a module for very simple, very easy GUI programming in the Python programming language.

196 questions
2
votes
2 answers

Python- Displaying a message box that can be closed in the code (no user intervention)

I am creating test scripts using Python. I need to have a message displayed to the user while the script continues to run. This is to have some status update , for eg: "Saving test results" which should not wait for the user to click "Ok".…
user1145494
  • 21
  • 1
  • 2
2
votes
1 answer

How do I make a multienterbox in Easygui?

This is my best attempt at a multienterbox with Easygui and Python. Would someone please give me a working example? import easgui (fieldNames= ['Year','Month','Day','Time Hour','Time Minute', 'AM or PM']) log = easygui.multenterbox(msg='Fill in the…
gian848396
  • 459
  • 1
  • 8
  • 24
2
votes
1 answer

How can I force a window full screen in python (using easyGUI)

I am just starting out using easyGUI with Python, and am running in to a bit of trouble. I want my application to run in full screen. However, I can not figure out how to get this to work. This could apply to any python/easyGUI code, such as…
evt
  • 941
  • 2
  • 16
  • 24
2
votes
1 answer

Tried to execute the easygui module in google colab but received no display name and no $DISPLAY environment variable

Links where I found solutions but don't understand: no display name and no $DISPLAY environment variable in Jupyter Notebook ipython notebook - $DISPLAY variable error ipython notebook on linux VM running matplotlib interactive with nbagg 1.…
2
votes
1 answer

Why does easygui insert curly brackets when passed a tuple that includes strings with embedded spaces?

Easygui inserts curly brackets when we try to break the text is there a way to break the text without it giving the curly brackets. import easygui #Class for seperating workers. class HumanClassification: #Sets the default worker info to null: …
a9ent456
  • 21
  • 2
2
votes
1 answer

Python easygui module multchoicebox preselect

The multiple choicebox in easygui always seems to have an option selected by default. The option selected can be changed with the preselect parameter based on the index of the desired option. Is there a way to make it so that there is no option…
wanderweeer
  • 449
  • 1
  • 6
  • 16
2
votes
4 answers

Python easygui module

In this code: #! street.py # A simple program which tests GUI import easygui easygui.msgbox("This programe asks for your info and stores them") name = easygui.enterbox("What is your name?") hNumber = easygui.enterbox("What is your house…
Alex
  • 51
  • 1
  • 7
2
votes
0 answers

How to lift easygui window above all windows in python?

I've started using easygui instead of tkinter because its easy, but I've run into a little problem the following code when used in jupyter notebook launches a window but it will pop up behind the browser. import…
James Draper
  • 5,110
  • 5
  • 40
  • 59
2
votes
2 answers

More pythonic way to nest functions

Here is the code that I have: def reallyquit(): from easygui import boolbox if __debug__: print ("realy quit?") answer = boolbox("Are you sure you want to Quit?") if answer == 1: sys.exit() …
Aaron
  • 23
  • 2
2
votes
3 answers

Cannot Import easygui module

This is my first question on Stack Oveflow, so forgive me if I do something wrong. I've been using Python for a few months. I'm trying to make a simple GUI. I came across EasyGUI. When i try to import the module, i get an error: Traceback (most…
MattR
  • 4,887
  • 9
  • 40
  • 67
2
votes
0 answers

Bizarre py2app issue: works as Python script and as app in alias mode, but not as frozen/bundled/deployment app

Basic problem: I have a Python script that's supposed to write a list of servers to an Excel file. When running it as a Python script, it works. When I run it in py2app's alias mode, it also works. However, when I build a redistributable…
JesseG
  • 238
  • 1
  • 9
2
votes
1 answer

GUI Quiz using easygui and pygame issue with quieting the game and playing sound .mp3

Can any one help with exiting the game and my .mp3 files not playing just making a buzz noise for example every time you answer right or wrong instead of the actual sound? Is it possible to get the quiz to exit by hitting the cross button on window…
Mays D
  • 21
  • 2
2
votes
1 answer

Python easygui can't select file

Here's my code: import easygui f = easygui.fileopenbox() print f Seems simple, but when I run it, I can't select any of the files, see figure in link. Sorry if this is dumb, but I am at my wit's end! https://i.stack.imgur.com/A0otI.jpg
agordhandas
  • 47
  • 1
  • 3
2
votes
1 answer

Why is Python printing braces here?

When I run the code below, the following message box pops up. Why is it printing those annoying braces where I don't want them to? I am using Python 2.7 and EasyGui. from __future__ import division from easygui import * import ystockquote def…
Shankar Kumar
  • 2,197
  • 6
  • 25
  • 32
2
votes
1 answer

Python, function in a while loop ruining it for me

I'm programming a dice game. This segment of code is for the input, to make sure I have a correct input (example, 5+4*3/2-1) and not crash the program later. I'm using easygui for GUI. At first the code was like this: #possible_inputs = a list of…
1
2
3
13 14