Questions tagged [pygui]

Cross-platform Pythonic GUI API

  • Develop a GUI API that is designed specifically for Python, taking advantage of Python's unique language features and working smoothly with Python's data types.

  • Provide implementations of the API for the three major platforms (Unix, Macintosh and Windows) that are small and lightweight, interposing as little code as possible between the Python application and the platform's underlying GUI facilities, and not bloating the Python installations or applications which use them.

  • Document the API purely in Python terms, so that the programmer does not need to read the documentation for another GUI library, in terms of another language, and translate into Python.

  • Get the library and its documentation included in the core Python distribution, so that truly cross-platform GUI applications may be written that will run on any Python installation, anywhere.

18 questions
0
votes
0 answers

PyGUI - trying to get scrolling to work in a TextField Object

PyGUI: I'm defining a text field to display text from an input source in the usual way: win.status_field = TextField(position = (550, 120), width = 200, text = create_processing_text(), multiline = True, lines = 30) This works fine, but…
ProfVersaggi
  • 886
  • 13
  • 18
-1
votes
1 answer

Does Pyinstaller also bundles Python3?

I am trying to create a package of my Python3 script using Pyinstaller. I have one query: will the bundled file in the dist folder include python3 as well? Will that executable work on a system that does not have python3 installed? I am using the…
Sandy
  • 23
  • 5
-1
votes
1 answer

Issue in PyQt within Python - WebBrowser Project

The code below is a WebBrowser code. The problem is when I want to switch tabs which happens in the function 'SwitchTab'. I've checked that in function 'SwitchTab', my 'Tab_Content' variable is empty-as it prints 'None'- and here is the problem. I…
1
2