Posts by GDVP • 41 points
7 posts
-
0
votes2
answers45
viewsA: Django - No module named 'polls'
I found a solution to that part. But I warn you that due to some divergences in the current version of Alura’s article, the next steps also did not work (I believe that instructions/stages were…
-
0
votes2
answers45
viewsQ: Django - No module named 'polls'
Hello, I’m starting to study Django (current version: 3.2.5), and I followed this article in an attempt to configure it (version consulted on 07/29/2021):…
-
0
votes2
answers355
viewsQ: Float to str conversion without losing two decimal places and changing decimal separator
In Python, I need to convert a float to string and replace the point by comma, without losing the two decimal places. I have tried several ways, but could not. In doing: >>>…
-
0
votes1
answer431
viewsA: Python - Kivy - pyInstaller - Generate executables
Good morning, I went through the same problem, I found solution on the Kivy library website (kivy.org) It turns out that currently, when we generate the executable through the pyinstaller, it does…
-
0
votes1
answer274
viewsQ: Kivy: Screenmanager() to Clear Widgets before screen transition
I’m building an application with Python and Kivy. To toggle the screens use Kivy’s Screenmanager. Ex.: Button: text: 'Sair de Tela 2 e voltar para Tela 1' size_hint_y: None height: 100 on_press:…
-
1
votes1
answer450
viewsQ: Save Captured Data and Executed Commands with Python
I need to use Python to make several commands on a system, and at the same time go saving in a dataframe everything that is being done. There will be hundreds of commands per minute, for several…
-
0
votes1
answer223
viewsQ: How to identify files in the same name pattern, which are in a given directory, using Python?
I need to get the Python identify the files I need, and if you are one of them, open for processing: 1) All files are in the same directory, example: (r'C: Users Me Desktop Test File Test…