Comment on Ask HN: Is Python async/await some kind of joke?Comments−cpburns20092yI generally find threaded code easier to work with, especially with WSGI applications (one thread per request). The only time I find async code helpful is to prevent callback hell like when using PySide6 or JavaScript on the front-end.
Comments
I generally find threaded code easier to work with, especially with WSGI applications (one thread per request). The only time I find async code helpful is to prevent callback hell like when using PySide6 or JavaScript on the front-end.