Want to write faster Python code? Discover the difference between `async/await` and `threading` and how concurrency works in Python with real-world examples.
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.
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.