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
1
vote
1 answer

what is process of deploying easygui application?

can we deploy 'easygui' application? If so, how? I have done a simple easy GUI application using Python 3.6 Now I want to create a setup file for the same.
1
vote
3 answers

Easygui output to easygui dialogue?

How can I make easygui output to an easygui dialogue, rather than the terminal from which the x.py was invoked. If I run my python script from a terminal, the easygui dialogue boxes appear and work, but the output is displayed in the terminal and…
Fiddy Bux
  • 703
  • 11
  • 22
1
vote
2 answers

Install Python module easygui on Ubuntu 16.04 without Pip or setup.py

I am new to Ubuntu coming from Windows. I need to install the easygui Python module but the version currently on PyPI has issues. The previous release 0.97 is fine. Using pip install easygui installs 0.98. I can download the 0.97 library from…
GBG
  • 233
  • 5
  • 17
1
vote
1 answer

How to run python scripts one after the other by selecting the tests using easygui?

I am using the following code to select the tests i want to run one after the another. from easygui import * import sys,os msg="Select following tests for testing" title="Test…
1
vote
1 answer

Closing a running program from a process

How can I close a program from a child process? For exanple: import easygui import multiprocessing def func(): reply=easygui.buttonbox("start?",image="F:\project\phonber.png",choices=['yes','no']) if reply=="yes": exit_option() if…
user4719989
  • 107
  • 1
  • 4
  • 11
1
vote
3 answers

Python3.5 erorr when import easygui

I got below error when import easygui in Python3.5 Traceback (most recent call last): File "", line 1, in import easygui File…
1
vote
0 answers

Checking if multiple variables are equal to None

So, I'm currently planning a program using the Easygui module, The problem I am facing is, when I press the cancel button on the GUI, it just continues, so to get past this, I want to add something to my program like: if Easygui_Variable is None: …
Thompson
  • 11
  • 2
1
vote
0 answers

how to maximize the easygui message box as default

I'm using easygui in my final year project. Is there any way i can set the message box maximize as default. Right now it's too big for my 2.8' touch screen display. This is my sample code- `while True: …
1
vote
1 answer

Python: EasyGui freezes with fileopenbox()

I'm writing a code to open a PDF file, select the number of pages to crop, and then create a new cropped file. Here is the code: from easygui import * from pyPdf import PdfFileReader, PdfFileWriter # 1 select a inputfile inputFileName =…
Ruseiro
  • 23
  • 1
  • 4
1
vote
1 answer

Multi choice, easygui buttonbox

We trying to create a multi choice menu using easygui, buttonbox. We have tired if, else and elif statements but whenever selecting one of the math subject options, it always takes the player to addition/will ask the player addition questions. We…
1
vote
0 answers

Easygui - Is it possible to have a multiple choice and text entry on one window?

I'm using EasyGui in Python 2.7. I would like to do something along the lines of: In one window, Have 5 text entry boxes Underneath this in the same window, a multiple choice option where I can select one of three options Underneath this in the…
Tandy Freeman
  • 528
  • 5
  • 15
1
vote
1 answer

How to use buttonBox to trigger script?

I would like to use buttonBox (from Python easyGUI) to trigger functions in Python. But I am not sure how to do it. The buttonbox code is like this: buttonbox(msg='Robot Moving', title=' ', choices=('MoveFwd', 'MoveBwd', 'TurnR','TurnL'),…
Amber.G
  • 1,343
  • 5
  • 12
  • 16
1
vote
1 answer

How to output an entire loop in easygui python

I am trying to output a string of charaters from one loop into an easygui.msgbox. I tried running this code: import easygui n = 9 for i in range (9): if i == n: easygui.msgbox(str(i)) else: easygui.msgbox(str(i)+",",) But…
1
vote
1 answer

Unable to select file with easygui on Mac (files are greyed out and unclickable)

I'm having a similar issue as that described here, despite having the latest version of easygui (0.97). easygui.fileopenbox(): All files are greyed out and unclickable. I've tried including default="*" and filetypes="*" parameters, to no avail.…
Pyderman
  • 14,809
  • 13
  • 61
  • 106
1
vote
1 answer

Python EasyGUI How to keep window open when given input

I am in Python and I am using EasyGUI. I want to know how to keep a easygui.buttonbox window open after you click a button. Here is my code: def Money(): global budget #Not important run = 1 while run == 1: money =…
Alex
  • 13
  • 1
  • 7