Posts by kenta • 59 points
4 posts
-
1
votes1
answer1923
viewsQ: How to connect to Firebird database in Python?
I’m making an application myself Python that should connect to a bank Firebird. The application is running on a Linux and the bank in a Windows. My test file worked properly on the server Windows,…
-
-1
votes1
answer544
viewsQ: How to configure Raspberry Pi to run only one Python application?
I am developing an application in Python to run on a Raspberry Pi, this application will start as soon as the device is turned on. I am using the Pyqt5 to make the screens. How can I configure the…
-
1
votes1
answer347
viewsQ: How to remove the edge of a Pyqt5 window on Raspberry Pi?
I’m developing an application that will run on a Raspberry Pi interfaced in Pyqt5. This application will occupy the entire screen, making it impossible for the user to click outside the application.…
-
3
votes1
answer511
viewsQ: how to import classes referencing each other in python?
I have a problem when it comes to importing classes into Python. See, there are 4 files: main: from classeB import ClasseB ClasseB() class A: from classeModelo import ClasseModelo class ClasseA():…