desktop

Can pyinstaller make a desktop file (with an icon) for an Ubuntu python app

Can pyinstaller make a desktop file (with an icon) for an Ubuntu python app Question: I’m building a python app which is to pack up as a single executable and work on Windows, MacOS and Linux. Have made a lot of progress and am using a workflow on Github to build using pyinstaller for each …

Total answers: 2

Tkinter window at the bottom all the time

Tkinter window at the bottom all the time Question: I already know tkinter.Tk().attributes(“-topmost”, True) which makes the window stay on top all the time. But is there some way to make the window stay at the bottom all the time? I mean something like tkinter.Tk().attributes(“-bottommost”, True) or something like that. Asked By: Jakub Bláha || …

Total answers: 3

How to get Desktop location?

How to get Desktop location? Question: I’m using Python on Windows and I want a part of my script to copy a file from a certain directory (I know its path) to the Desktop. I used this: shutil.copy(txtName, ‘%HOMEPATH%/desktop’) While txtName is the txt File’s name (with full path). I get the error: IOError: [Errno …

Total answers: 11

Project structure for desktop applications using SQLAlchemy and wxPython

Project structure for desktop applications using SQLAlchemy and wxPython Question: I want to create a desktop application using SQLAlchemy and wxPython, but I’d like to structure the project in a way similar to django projects, using django app-like packages (related models, views and tests in the same package) and settings and main module in the …

Total answers: 1

Python Desktop Application with the Browser as an interface?

Python Desktop Application with the Browser as an interface? Question: I want to create an application that runs on the users computer, a stand-alone application, with installation and what-not, but I want the interface to be a browser, either internal and displayed as an OS window or external accessible using the browser (i.e. some http …

Total answers: 5