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
0 answers

Python EasyGUI: Systray icon xor multiple windows

I'm writing a simple program that gives you a message to take a break from sitting at your Computer every x minutes. However, I also need to be able to close the program without having to wait for a window to pop up after x minutes. My ideas are…
SGer
  • 544
  • 4
  • 18
1
vote
3 answers

How to check if user input has these lines?

It's my second program in Python. I seem to be happy with my progress. The question is I am trying to make is: choice=eg.ynbox(msg='wat to do') for["true","1"] in choice: print("yes") for["false","0"] in choice: print("no") The…
Surya Teja Karra
  • 541
  • 1
  • 6
  • 19
1
vote
2 answers

Py2Exe and Easgui

I am trying to convert a py file to an exe. Here is the code for my setupfile from distutils.core import setup import py2exe setup(console=["mycode.py"]) When I use cmd, it says: Import Error: No module named easygui How do I let py2exe know about…
1
vote
1 answer

Python EasyGUI- Integerbox Bound Limits

I am using EasyGUI as part of a small program I am writing. In it, I am using the IntegerBox "function". Part of the parameters of this function is the lowerbound and the upperbound (the limits of the value entered). If the value is under the…
Rushy Panchal
  • 16,979
  • 16
  • 61
  • 94
1
vote
1 answer

How to use Python's Easygui module to pick files and insert filenames into code

I'm trying to use Python's easygui module to select a file and then insert it's name into a program I wrote (see code below). So I want to insert filename 1 and 2 where it says insert filename1, etc.. Any help would be greatly appreciated. Thanks! …
FS.
  • 1,201
  • 1
  • 12
  • 11
1
vote
1 answer

How do you save what you've done in a module without keeping the computer on?

Am going to design a game about raising dragons but don't know a way of saving my session/exp/stats so it would be pointless! Can't work out how to use pickle so can somebody give me an answer? P.S.Simplify your answers as I am stupid
1
vote
1 answer

Scrollbar in easygui?

Is there any way of getting a scroll bar using the easygui module or a modified version of it? I found a file online called thinking_py.txt, and, after converting it to python format, found that it did indeed have a version of easygui with a…
Hersh S.
  • 197
  • 2
  • 10
0
votes
1 answer

How do I terminate a msgbox in python? (using python easygui site-package/module)

I'm a newbie and am having some problems with finding the documentation of how to implement certain commands for the msgbox. One would be how to terminate the box.
0
votes
1 answer

Python, easyGUI and sqlite3: Using python to read files in one folder or multiple folder, then adding the folder names and filenames to database

I am new in python and am trying to add folder names and text files in those folders to the database. The problem is that i don't know how to add the "textfiles" and "opendirectory" to the database. Please look at this code and help me.…
Ricky
  • 323
  • 2
  • 5
  • 11
0
votes
1 answer

How do I write multi enter box input into .txt?

How do I make it so that "file.write(repr(fieldNames1))" writes what I input into "fieldNames1"? import easygui #Multi Enter Box fieldNames1= ['Situation:(Example: Waiting for a friend who is late.)','Thoughts:(EXAMPLE: My friend Bob is always…
gian848396
  • 459
  • 1
  • 8
  • 24
0
votes
1 answer

How do I define name 'feildNames1'?

I've been googling and I cannot find a solution. Would someone please share a working example? import easygui #Multi Enter Box fieldNames1= ['Situation:(Example: Waiting for a friend who is late.)','Thoughts:(EXAMPLE: My friend Bob is always…
gian848396
  • 459
  • 1
  • 8
  • 24
0
votes
1 answer

python with flashdrives and linux commands

I have 2 questions. So i am making a python program that will backup and restore a selected directory for me. This is my first program and i am using easygui as my gui for this program. what i want to know is how i can take a linux command that is…
Huntaz556
  • 117
  • 1
  • 3
  • 12
0
votes
1 answer

Another Token error: EOF in multi-line statement

The following code gives me this error "Token Error: EOF in multi-line statement". I cannot seem to find the error though! Maybe someone else will see it? import easygui import time namegui = easygui.enterbox(msg='Enter your name:', title='Name…
gian848396
  • 459
  • 1
  • 8
  • 24
0
votes
2 answers

How do I make an easygui Multi Enter Box?

How do I make an easygui Multienterbox with all of the questions below in one window? namegui = easygui.enterbox(msg='Enter your name', title='Name query', default='Gian') baigui = easygui.enterbox(msg='Enter your BAI', title='Burns Anxiety…
gian848396
  • 459
  • 1
  • 8
  • 24
0
votes
1 answer

image "pyimage19" doesn't exist

I find several questions with the same topics but non of them solve my problem. I want to load a file (motion) and plot a figure base on that and show the figure on a GUI using easygui. I used this code on jupyter notebook and spyder and there was…