I am putting this on pause at 38:56 to comment here. I've never thought it would be so interesting to listen about all the history and the path that led to Asycnio. Thank you.
Since the moment he mentioned 'select sys call,' I didn't understand what he was saying. It's specialized knowledge about Linux and networking, which I'm not familiar with. Perhaps there should be a course that introduces async for the majority of learners, without such academic knowledge
Loving it! Especially the part about using blocking stuff in my async codebase. Sometimes it is not as convenient as it could be. Also, errors handling and debugging usually missed in such series, thanks for not skipping it!
This is very well thought out and provides context, history and answers the WHYs before taking a shortcut to ide/code editor. Highly recommended for anyone interested in understanding crucial concepts behind the asyncio implementation. Looking forward to the rest of the episodes!
Your teaching style is not really good and not intuitive. Going through a series of PEPs and just briefly introducing them, how can viewers understand what you are saying? This is a lecture, not a movie. Viewers need to watch attentively and carefully to understand, unlike a movie where viewers can watch or not, or fast forward to another part, and viewers don't get a headache from watching a movie.
19:58 Gilectomy -> overcoming the limitation of GIL is not easy. 23:13 the goal of asyncio -> maximize the usage of a single thread. 29:15 event loop -> Select syscall as a solution to waste of CPU or lag
Since the moment he mentioned 'select sys call,' I didn't understand what he was saying. It's specialized knowledge about Linux and networking, which I'm not familiar with. Perhaps there should be a course that introduces async for the majority of learners, without such academic knowledge
I wish you had (or would) create more such amazing in-depth playlists. Teachers like you make us fall in love with programming again and again. Thank you so much!!
I have been trying to learn AsyncIO in Python for a while now and this is by far the best (clear, concise, deep) resource I have found. Massive thanks to Lukasz and Edge DB team for arranging this!
Explained things so well! Loved hearing the history of asyncio to contextualize it's current implementation. To say you did your homework would be an understatement! Thanks again
Jestem absolutnie zachwycony twoim tłumaczeniem :D Miło słyszeć, że ktoś to tak świetnie tłumaczy - domyślam się, że nie tylko ja to mówię, ale i tak zostawiam komentarz dla zasięgu :P
this is amazing work. I've bounced off a half dozen asyncio tutorials but it's finally, finally starting to click for me. rlogin was my bathtub moment - many thanks.
Łukasz, this is some very, very, very in detail history knowledge which I'm deeply grateful to you! Thanks for your time and effort. I'm going to continue on rest of the movies! Buy this man a beer!
i never thought, as someone who has been learning python since 8 weeks ago, that i would have such an intimate knowledge of a module before i ever knew how to implement it
Amazing piece of content. Thank you so much for such fantastic quality of information. Special mention for performing the donkey from shrek's "are we there yet" !
Hello. Your video is awesome! I am from Brazil, I started working with AsyncIO and python a few weeks ago, and your content is being so helpful. I hope you keep doing that. Congratulations!
Congrats for this video! The most complete I`ve ever seen, specially the historic part. Knowing which concepts and early ideas participated in the creation/evolution of asyncio and its peers was great. Definetely I`ll check the rest of the series.
Learning the fundamentals of Asyncio and building an app with Starlette and EdgeDB!? This will be the best TH-cam series for Python devs in the history of TH-cam Videos about Python!!!
Very nice start to what promises to be a very interesting series. One thing I'm not sure about: one hand you say "the GIL is what makes python fast" and you work on asyncio to make it even faster; on the other hand I see Google starting the S4TF team to push for ML to be written in Swift because "python is slow". Who is right ?
Good question! Python is both a programming language that you see in your text editor, as well as a runtime that executes your program. It is impossible to think about Python just looking at the source code without thinking how it behaves - or can behave - at runtime. An important feature of Python is that nothing is private, everything is mutable and introspectable. Plenty of features of Python rely on this design. This puts some constraints on how fast native Python can run, for example due to very widespread usage of dictionaries, duck typing, and so on. When we're saying that the GIL is what makes Python fast, we mean that without the GIL the particular design that CPython is an implementation of, would be less efficient without a single global interpreter lock. Other programming languages have different sets of guarantees and features, sometimes very specifically chosen to allow better native performance. While Swift isn't particularly interesting in this space, we at EdgeDB are quite excited about Rust for systems programming. Our database server already includes Rust code for some performance-critical bits (which in the old times would typically be handled by writing a C extension).
The Excellent!! What an effort and knowledge content of this video! BTW, what is the status of GIL in 2024. Found a PEP 703, which is making GIL optinal.
Thank you for the video! I got a bit confused at about 12:45 where you explain who catches the error when adding to the dictionary and what thread propagates it. Could you please elaborate? Thanks in advance !
When you talk about the event loop you often bring up the picture with those callbacks. It was always rather confusing to me. I finally understood what did you mean by it. Thanks
Since the moment he mentioned 'select sys call,' I didn't understand what he was saying. It's specialized knowledge about Linux and networking, which I'm not familiar with. Perhaps there should be a course that introduces async for the majority of learners, without such academic knowledge
Exactly wait I was looking for, after watching a couple of other tutorials on async(io) (around 30~45m each) I felt like they all barely touched base and put code on the screen way to fast for me to grasp all concepts.
Your teaching style is not really good and not intuitive. Going through a series of PEPs and just briefly introducing them, how can viewers understand what you are saying? This is a lecture, not a movie. Viewers need to watch attentively and carefully to understand, unlike a movie where viewers can watch or not, or fast forward to another part, and viewers don't get a headache from watching a movie.
Hi Langa, Since the moment he mentioned 'select sys call,' I didn't understand what he was saying. It's specialized knowledge about Linux and networking, which I'm not familiar with. Perhaps there should be a course that introduces async for the majority of learners, without such academic knowledge @@llanga
Your teaching style is not really good and not intuitive. Going through a series of PEPs and just briefly introducing them, how can viewers understand what you are saying? This is a lecture, not a movie. Viewers need to watch attentively and carefully to understand, unlike a movie where viewers can watch or not, or fast forward to another part, and viewers don't get a headache from watching a movie. @@llanga
I am putting this on pause at 38:56 to comment here. I've never thought it would be so interesting to listen about all the history and the path that led to Asycnio.
Thank you.
This series is the most complete AsyncIO tutorial on TH-cam. Massive thumbs up! :)
:( why it is hard
@@luxetim1541 😅
Since the moment he mentioned 'select sys call,' I didn't understand what he was saying. It's specialized knowledge about Linux and networking, which I'm not familiar with. Perhaps there should be a course that introduces async for the majority of learners, without such academic knowledge
You're one of the few people on the planet who understanding the psychology of explaining things effectively. Great video.
Loving it! Especially the part about using blocking stuff in my async codebase. Sometimes it is not as convenient as it could be. Also, errors handling and debugging usually missed in such series, thanks for not skipping it!
This is very well thought out and provides context, history and answers the WHYs before taking a shortcut to ide/code editor. Highly recommended for anyone interested in understanding crucial concepts behind the asyncio implementation.
Looking forward to the rest of the episodes!
Your teaching style is not really good and not intuitive. Going through a series of PEPs and just briefly introducing them, how can viewers understand what you are saying? This is a lecture, not a movie. Viewers need to watch attentively and carefully to understand, unlike a movie where viewers can watch or not, or fast forward to another part, and viewers don't get a headache from watching a movie.
19:58 Gilectomy -> overcoming the limitation of GIL is not easy.
23:13 the goal of asyncio -> maximize the usage of a single thread.
29:15 event loop -> Select syscall as a solution to waste of CPU or lag
Since the moment he mentioned 'select sys call,' I didn't understand what he was saying. It's specialized knowledge about Linux and networking, which I'm not familiar with. Perhaps there should be a course that introduces async for the majority of learners, without such academic knowledge
thanks a lot for the clarifications!
I wish you had (or would) create more such amazing in-depth playlists. Teachers like you make us fall in love with programming again and again. Thank you so much!!
Came here after listening to you on the Real Python Podcast. This is some amazing insight into Python's AsyncIO. Keep it up!
Thanks a lot for this video! Watched a lot of asyncio and no one had explained it as well as you did. Please keep sharing !!
I have been trying to learn AsyncIO in Python for a while now and this is by far the best (clear, concise, deep) resource I have found. Massive thanks to Lukasz and Edge DB team for arranging this!
讲的太好了,找了很久有关python asyncio相关的高级知识,现在终于看到了,谢谢你无私的分享
Explained things so well! Loved hearing the history of asyncio to contextualize it's current implementation. To say you did your homework would be an understatement! Thanks again
This is the BEST asyncio video I have watched so far! I'm bound to applaud
Great lecture series. After spending hours online and looking at asyncio implementation, I am finally starting to get it. Thank you so much!
Awesome introduction, I need to check all these PEPs and libraries, learned a lot. Thanks EdgeDB.
This is a super super good video. I didn't expect such a comprehensive take on async await.
OMG your explanation is one of the most comprehensive yet relaxed hence easy to understand.
Liked and subscribed!
You have an amazing channel Sir!
Mate thank you for putting these together, you’re a great teacher.
Wow, amazing introduction of the python concurrency history!
Jestem absolutnie zachwycony twoim tłumaczeniem :D Miło słyszeć, że ktoś to tak świetnie tłumaczy - domyślam się, że nie tylko ja to mówię, ale i tak zostawiam komentarz dla zasięgu :P
this is amazing work. I've bounced off a half dozen asyncio tutorials but it's finally, finally starting to click for me. rlogin was my bathtub moment - many thanks.
Łukasz, this is some very, very, very in detail history knowledge which I'm deeply grateful to you! Thanks for your time and effort. I'm going to continue on rest of the movies!
Buy this man a beer!
i never thought, as someone who has been learning python since 8 weeks ago, that i would have such an intimate knowledge of a module before i ever knew how to implement it
love it! keep doing tutorials, they are really nice
A very thorough discussion! So informative, and the speaker is excellent.
Amazing piece of content. Thank you so much for such fantastic quality of information. Special mention for performing the donkey from shrek's "are we there yet" !
Hello. Your video is awesome! I am from Brazil, I started working with AsyncIO and python a few weeks ago, and your content is being so helpful. I hope you keep doing that. Congratulations!
Congrats for this video! The most complete I`ve ever seen, specially the historic part. Knowing which concepts and early ideas participated in the creation/evolution of asyncio and its peers was great. Definetely I`ll check the rest of the series.
This explanation is the best I ever came across on the subject of asynchronous handling ❤
Learning the fundamentals of Asyncio and building an app with Starlette and EdgeDB!? This will be the best TH-cam series for Python devs in the history of TH-cam Videos about Python!!!
i thought i will listen to core details in asyncio but man this is SO interesting i should watch the whole playlist! Thank you very much
Very nice start to what promises to be a very interesting series.
One thing I'm not sure about: one hand you say "the GIL is what makes python fast" and you work on asyncio to make it even faster; on the other hand I see Google starting the S4TF team to push for ML to be written in Swift because "python is slow". Who is right ?
Good question! Python is both a programming language that you see in your text editor, as well as a runtime that executes your program. It is impossible to think about Python just looking at the source code without thinking how it behaves - or can behave - at runtime.
An important feature of Python is that nothing is private, everything is mutable and introspectable. Plenty of features of Python rely on this design. This puts some constraints on how fast native Python can run, for example due to very widespread usage of dictionaries, duck typing, and so on.
When we're saying that the GIL is what makes Python fast, we mean that without the GIL the particular design that CPython is an implementation of, would be less efficient without a single global interpreter lock.
Other programming languages have different sets of guarantees and features, sometimes very specifically chosen to allow better native performance. While Swift isn't particularly interesting in this space, we at EdgeDB are quite excited about Rust for systems programming. Our database server already includes Rust code for some performance-critical bits (which in the old times would typically be handled by writing a C extension).
Amazing detailed introduction to the history of asyncio and so much stuff about the ecosystem of coroutine in Python, loving it and thanks!
great series. not easy to elaborate on this topic. thanks, teacher
Fellow ex. FB employee too. I worked in security. Great course to get me up to speed with this library.
This is so excellent! I will borrow the bartender analogy to explain concurrency from now on. Subscribed and thank you!
Wow! Thank you. I wish if you had a book about threadin in Python.
simple and circumstantially! Thank you!
Wow! This is a gem....super impressed with the depth. Love this.
Thanks for sharing your knowledge and explaining this hard to grab concepts with such elegance 👏
Great tutorial! Thank you, Lukasz for taking the time and explaining asyncio.
Crisp and detailed contents with nice presentation. :) --> and going to try edge DB
You should make more videos. Really nice examples and thoughtful.
The Excellent!! What an effort and knowledge content of this video! BTW, what is the status of GIL in 2024. Found a PEP 703, which is making GIL optinal.
Możliwe, że i ten komentarz jest dla zasięgu :P, ale w tym powiem, że też miło w końcu rozumieć skąd to wszystko się wzięło :D
Thanks Łukasz for these videos and for the black formatter.
Thank you for the video! I got a bit confused at about 12:45 where you explain who catches the error when adding to the dictionary and what thread propagates it. Could you please elaborate? Thanks in advance !
Łukasz big Thanks :). Your knowledge is huge and you are really good as you-tuber. I have tried this and it is no easy.
A true masterclass. Thank you!
wow, thank you! I hope I will obtain enough knowledge to implement Asyncio in my Flask project.
Thank you for this series its great !
When you talk about the event loop you often bring up the picture with those callbacks. It was always rather confusing to me. I finally understood what did you mean by it. Thanks
Very well prepared and presented. Thanks.
My doubt is, how that bartender (25:04) goes back to previous customers? please reply
Since the moment he mentioned 'select sys call,' I didn't understand what he was saying. It's specialized knowledge about Linux and networking, which I'm not familiar with. Perhaps there should be a course that introduces async for the majority of learners, without such academic knowledge
Love to see a detailed series on async
Great content, exactly what I was looking for!
Correct me if I'm wrong. I have an example for deadlock, "You are trying to find job to gain experience, but need experiance to get a job"
I just finished the podcast on Real Python came here for more :D
It's been more than 5 months since the last video. Will you add the remaining parts or will we be left hanging midway ?
:/
Are there any articles or blogs that accompany the videos?
Really nice explanation. Thanks
What causes this? --> RuntimeError: asyncio.run() cannot be called from a running event loop
Jupyter problem?
wow.. awesome content! thank you
Great series! when's the next video coming up?
We're uploading it right now. We'll be targeting to release at least one new episode per week.
Exactly wait I was looking for, after watching a couple of other tutorials on async(io) (around 30~45m each) I felt like they all barely touched base and put code on the screen way to fast for me to grasp all concepts.
actually, just watched this first episode and am really pleased with the content. I'm going to watch the rest tomorrow.
Just out of curiousity, how many times were you recording the part with 6 seconds sleep and adding another variable? :D
Splendid job 🤘
Would it be as efficient as node's main loop ?
Great Explanation !!
what is the difference between qrequests and asyncio
Amazing, thank you so much! :)
Great stuff! Love it
Sometimes explaining just the main point is good rather than giving overwhelming information.
23:10 There's one more thing!
This is awesome. Thanks alot
Great video.. Seriously
The video where it clicked, thanks.
Great Vedio!!!!!!!!!!
Dude, you even mentioned K8S and Fargate in the introductory series. I gues this is not meant for someone who is fairly new to these things huh?
Thanks. Very interesting
really interesting tuts
That was precious.
Piekna sprawa.
Super nice!
спасибо яндекс что я могу смотреть это видео на русском
но главное спасибо автору видео :)
Nice. Thanks.
"Mr White, I'm gonna teach you asyncio"
Very good
AWESOME!
It would have been most amazing python async series if only black resorted to single quotes
hi this is a great video but if with code programming is better and more example and write your example such as senario.
god willing
I was looking for copper and found gold
consider changing ur career to instructor, everything is just well exaplined.
nice
Who's here from real python podcast?
Your teaching style is not really good and not intuitive. Going through a series of PEPs and just briefly introducing them, how can viewers understand what you are saying? This is a lecture, not a movie. Viewers need to watch attentively and carefully to understand, unlike a movie where viewers can watch or not, or fast forward to another part, and viewers don't get a headache from watching a movie.
You have lost me on bartender analogy Łukasz ;) I guess you should see what real bartenders do in a busy place!
I feel bad for the bartender
this guy is pretty average looking I guess
Awww, that's the nicest thing anyone has ever said to me ♥️
Hi Langa, Since the moment he mentioned 'select sys call,' I didn't understand what he was saying. It's specialized knowledge about Linux and networking, which I'm not familiar with. Perhaps there should be a course that introduces async for the majority of learners, without such academic knowledge
@@llanga
Your teaching style is not really good and not intuitive. Going through a series of PEPs and just briefly introducing them, how can viewers understand what you are saying? This is a lecture, not a movie. Viewers need to watch attentively and carefully to understand, unlike a movie where viewers can watch or not, or fast forward to another part, and viewers don't get a headache from watching a movie.
@@llanga