Posts by SirRW • 23 points
2 posts
-
0
votes0
answers57
viewsQ: Python - about asyncio
I started testing pynput with asyncio, but there’s one problem I can’t solve at all. My code: current = set() def on_press(key): if key == keyboard.Key.up: current.add(key) print('Y') if key ==…
-
2
votes1
answer3009
viewsQ: Equivalent of python Curl
I was learning to use API’s from websites to a project, and right at the beginning I had difficulties and had to ask. This was the example of the use of API to test credentials on the site, I…