python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How to append and pop from a list parallely in python?
I need to run two functions, namely recorder() and transmitter() parallelly. Recorder() function adds a random string to the packets list every one second, while the transmitter function pops the firs...
Noah willis
Votes: 0
Answers: 2
Why this async aiohttp is so slow/How to speed it up
I adapted aiohttp code pretty directly from this post to create a scrip which I am aiming to query my database 40+ times a second so I can benchmark its throttling. This seems reasonable based on the ...
codecodecode
Votes: 0
Answers: 0
Why do some websockets require a second `await` to get a successful response?
I'm using a very simple python websocket api call below:
import asyncio
import websockets
import json
msg = {"jsonrpc": "2.0", "method": "public/get_index_price&quo...
Alex B
Votes: 0
Answers: 0
How to set up Notifications using Aiogram
I'm new to programming and I'm trying to implement function to my Telegram bot, which should check data from database, compare time and send notification if time has come.
However I have this type of ...
Antarctica
Votes: 0
Answers: 0