Posts by Junior Lima • 19 points
8 posts
-
0
votes1
answer79
viewsQ: How can I pass data from one Tkinter window to another?
I have two Tkinter Windows, and I want to pass the dice from one window to the other window. Code from the first Window: from tkinter import * from get_pos_mouse import Get_Mouse_Pos class…
-
0
votes1
answer42
viewsA: Async and Tkinter function
I don’t understand the concept async, however you can take what it contains in Entry inside the Main() function, maybe this solves the problem. async def main(): await…
-
-1
votes1
answer81
viewsQ: How to get the value of a Variable associated with a Checkbutton in Tkinter? - Python
How could I get the value contained in checkBtVar having as reference ckBt? for x in range(10): checkBtVar = Variable() ckBt = Checkbutton(root, variable=checkBtVar)…
-
0
votes1
answer67
viewsQ: Error trying to encrypt with BCRYPT in Python
Code: import bcrypt hashed = bcrypt.hashpw('teste',bcrypt.gensalt()) error: Typeerror: Unicode-Objects must be encoded before hashing Running the program shows this error, how can I fix?…
-
0
votes1
answer4801
viewsQ: How to encrypt password with Python
I need to encrypt password using Python, from what I saw in examples in PHP, they use a "module" that encrypts the password and which in theory does not decrypt, to validate the password they…
-
1
votes1
answer2169
viewsQ: PYTHON - How to know if there is an object on the screen from a reference?
Basically I wanted to know if there is the possibility of knowing if there is an object on the screen from a reference Example: There is a generic program on the screen that displays a closed lock,…
-
0
votes1
answer854
viewsQ: PYTHON - how to use a loop without stopping Tkinter
I have this program which is a kind of 'Force Brute' (I automated a process of clicking on a place, typing a number, and clicking elsewhere with @Pyautogui), I need to use a loop but when the loop…
-
0
votes1
answer71
viewsQ: How to make a window stand above all?
I don’t know if it’s possible to do that, so I’m not even gonna put a code in here. My question is this, if it is possible to make a window stand in front of all the other windows, and I am not…