Faster Python: Concurrency in async/await and threading

https://blog.jetbrains.com/pycharm/2025/06/concurrency-in-async-await-and-threading/

22 points · 1 comments · view on lemmy.world

1 Comments

LOLjoeWTF@lemmy.world · 3 pts · 1y

When I was using pycharm 2024 I had a plugin installed called "evaluate-async-code" and it was suuuuper helpful bc the codebase at work is primarily async python and not being able to debug async findings was always a pain, as outputs would be passed around and not always stored. I know, it's easy to store it as a variable, and it's just easier to get that value in that moment than realize you'll need to add one and restart the debugger.