Python tricks: Demystifying async, await, and asyncio
Video Statistics and Information
Channel: Sebastiaan Mathôt
Views: 80,325
Rating: 4.9205899 out of 5
Keywords: python, tutorial, screencast, async, await, asyncio, programming
Id: tSLDcRkgTsY
Channel Id: undefined
Length: 15min 59sec (959 seconds)
Published: Thu Aug 03 2017
Please note that this website is currently a work in progress! Lots of interesting data and statistics to come.
Biggest thing I don't like about async await is the drumming in the heads of people that say over and over "it's not another thread" when the only times it's not another thread are if it's an I/O routine. Almost always any work you do of your own will be in another thread even with async because it will be a CPU and not a hardware operation. So I think to keep insisting on that "no thread" just confuses people more about how async works