Skip to content Skip to sidebar Skip to footer
Showing posts with the label User Interface

Unable To Install Kivy On Macos10.15 Using Pip

So I have been using Tkinter up until now to build my GUI's for Python Projects. I want more fu… Read more Unable To Install Kivy On Macos10.15 Using Pip

'attributeerror' While Trying To Create A Console Screen Using Urwid

code below creates a layout and displays some text in the layout. Next the layout is displayed on t… Read more 'attributeerror' While Trying To Create A Console Screen Using Urwid

How To Draw More Than One Square In Tkinter's Canvas?

from Tkinter import Tk, Canvas master = Tk() w = Canvas(master, width=250, height=200) w.pack() w… Read more How To Draw More Than One Square In Tkinter's Canvas?

Python Multiprocessing And Wxpython Working Together

I've got the following problem: I've written a script which is running up to four processes… Read more Python Multiprocessing And Wxpython Working Together

Embed Audio, Video In Python Gui

I am working on a project that requires me to display some live video feeds from networked cameras … Read more Embed Audio, Video In Python Gui

How To Get Multiple Text Entries From Gui And Use Those In A Main Python Script?

I have a python file that extracts tweets, get their geo-coordinates and sentiment and finally plot… Read more How To Get Multiple Text Entries From Gui And Use Those In A Main Python Script?

How To Access The Gui Output?

I'm developing one test bench which runs multiple tests via python gui and prints the output as… Read more How To Access The Gui Output?

Can't Start Designed Pyqt Application

I have just designed my application inside pyQt Designer 5, generated my main.ui to main.py and my … Read more Can't Start Designed Pyqt Application

Pyqt4 - Detect Global Mouse Click

A part of a small project I am working on involves 'calibrating' the coordinates of the scr… Read more Pyqt4 - Detect Global Mouse Click

Cannot Update Sensor Data In Python (tkinter) From My Arduino Sensors

I am learning about interfaces on Python Tkinter. I was testing before sending random numbers from … Read more Cannot Update Sensor Data In Python (tkinter) From My Arduino Sensors

Making Multiple Menu's In Tkinter

Tried searching for this and could not find a suitable answer. I know we can do the following to cr… Read more Making Multiple Menu's In Tkinter

Triggering Popup.dismiss() In A Method Which Didn't Call Popup.open() (kivy)

I'm trying to develop a kivy app for my less-comp-savvy colleagues which wraps a nice GUI aroun… Read more Triggering Popup.dismiss() In A Method Which Didn't Call Popup.open() (kivy)

Run Script From Gui

I wrote a script (test.py) for Data Analysis. Now I'm doing a GUI in PyQt. What I want is when … Read more Run Script From Gui

In Python/opencv Is There A Way To Quickly Scroll Through Frames Of A Video, Allowing The User To Select The Start And End Frame To Be Processed?

In preparing to process a video I want the user to be able to select the first and last frame to be… Read more In Python/opencv Is There A Way To Quickly Scroll Through Frames Of A Video, Allowing The User To Select The Start And End Frame To Be Processed?

Easy Way To Launch Python Scripts With The Mouse In Os-x

I'd like to write cross platform Python scripts that are GUI frontends for command line program… Read more Easy Way To Launch Python Scripts With The Mouse In Os-x

Extra Tkinter Gui Popup

I've written a bunch of code that produces a GUI. Now whenever I run the code it produces the m… Read more Extra Tkinter Gui Popup

Class Menu In Tkinter Gui

I'm working on a Gui and I'd like to know if it is possible to make the menu property of a … Read more Class Menu In Tkinter Gui

Python Gui Events Out Of Order

from Tkinter import * from tkMessageBox import * class Gui: def __init__(self, root): self.cont… Read more Python Gui Events Out Of Order

Python Or Pythonw In Creating A Cross-platform Standalone Gui App

I am developing a simple standalone, graphical application in python. My development has been done … Read more Python Or Pythonw In Creating A Cross-platform Standalone Gui App

Getting Traceback And Attributeerror: 'nonetype' Object Has No Attribute 'get'

So I am trying to make a simple calculator program using Tkinter and python. I have some general c… Read more Getting Traceback And Attributeerror: 'nonetype' Object Has No Attribute 'get'