AsyncIO & Asynchronous Programming in Python

  Рет қаралды 156,617

NeuralNine

NeuralNine

Күн бұрын

Пікірлер: 134
@neelbanga
@neelbanga 3 жыл бұрын
Hello! I have a very small programming channel, I was wondering if you had any tips for me? Thank you!
@NeuralNine
@NeuralNine 3 жыл бұрын
Just took a look. Great English skills, are you a native speaker? Regarding tips I can just say the usual stuff. Upload good videos on a regular basis. Make the titles catchy but not Scammy. Make the thumbnails catchy but not ridiculous. I think for some people age might be a factor because they don't want to learn from someone who is younger. In that case, patience will pay off. Besides that, just focus on learning and making videos on interesting projects and over time people will come to your channel. You seem like a good teacher. Good luck! :)
@NeuralNine
@NeuralNine 3 жыл бұрын
I just saw that you are doing this for one month. That is not a long time. You are doing quite well. Work hard, be creative but don't be impatient ^^
@neelbanga
@neelbanga 3 жыл бұрын
@@NeuralNine No, I'm not actually a native speaker, my first language was Hindi then Japanese and after that I learned English. I have used English the most and the longest though so that's why it's my best language! Thank you for the tips, I will keep all of them in mind! I'll also make sure to be patient!
@NeuralNine
@NeuralNine 3 жыл бұрын
@@neelbanga Wow impressive. Keep pushing, I think you will be successful! :) I will pin your comment. Maybe you will get some subs that way.
@neelbanga
@neelbanga 3 жыл бұрын
@@NeuralNine Thank you so much!!! I love your videos, BTW I’m subscribed, it means a lot to be pinned by you!!!
@hadi_ayoub
@hadi_ayoub 2 жыл бұрын
Even though I watched a lot of videos and read a lot of articles about asynchronous, I did not understand the mean idea of asynchronous until I watched the very first four minutes of your video. Great explanation! Thank you!
@damiankirstein3311
@damiankirstein3311 Жыл бұрын
Probably the best explanation of basic asyncio on YT
@MOFCrystal
@MOFCrystal 3 жыл бұрын
This is a crystal clear explanation with the easiest examples. I have watched a few clips before this about the same topic, but I could only get a vague idea about this concept. Now, I think I can use this for my code. Much appreciated.
@mrjt6404
@mrjt6404 Жыл бұрын
I have been studying asyncio for two weeks. I watched this video for the second time and now i think I understand this complex programming Thanks a lot❤
@MoisesRDL
@MoisesRDL 2 жыл бұрын
I read and watched videos without understanding, I found your video and understood everything. Great video, simple and well explained.
@shiro3940
@shiro3940 2 жыл бұрын
I was confused at the few first minutes but when you're at the returning section, things got much clearer. thanks! 👌
@iaroslavdavydiak6439
@iaroslavdavydiak6439 Жыл бұрын
Thank you for explaining complicated things in simple words!
@o1techacademy
@o1techacademy 2 жыл бұрын
Excellent explanation of async await. Thank you very much sir.
@jorge1869
@jorge1869 2 жыл бұрын
Better explained impossible. I have seen other videos explaining this topic without understanding, but this guy is a crack. Subscribed!
@yash1152
@yash1152 Жыл бұрын
4:58 > this is not very asynchrounos 5:30 > while [other] is sleeping, print b yeah; thtat's what i wanted 6:05 > once we have some idle time; we're going to run this task 6:19 it seems to me that asyncio _tends to_ perform only cpu-bound blocking task and skip over the non-cpu task unless awaited for 8:48 ret vals 10:40 > future in python; it's like a promise in javascript thanks a lot - i have been watching soo many videos, but none covered it his well... others went somewhat deep but still missed the point. u kept it to manageable but still covered the worthy concepts of returns etc... thanks a lot. ----- ```import asyncio async def main(): task = asyncio.create_task(otfn) print('a') await asyncio.sleep(1) print('b') ret_val = await task async def otfn(): print('1') await asyncio.sleep(2) print('2') return 10 asyncio.run(main())```
@MFM88832
@MFM88832 Жыл бұрын
Your code is buggy and doesn't work. Here is the fixed version: import asyncio async def main(): task = asyncio.create_task(otfn()) print('a') await asyncio.sleep(5) print('b') ret_val = await task print("Return value: ", ret_val) async def otfn(): print('1') await asyncio.sleep(2) print('2') return 10 asyncio.run(main())
@yash1152
@yash1152 Жыл бұрын
@@MFM88832 hi! the code was copy pasted from the video as far as i can think
@spmathf
@spmathf Жыл бұрын
exactly what I wanted. Great and simple explanation
@shilashm5691
@shilashm5691 2 жыл бұрын
Multithreading also does one thing at a time. It is also does the thing concurrently
@charan2446
@charan2446 3 жыл бұрын
I think its better to start a new channel or whatever maybe for BodyBuilding - NeuralFitness
@ShukyPersky
@ShukyPersky 2 жыл бұрын
what you have said to asynch programming describes precisely multithreading as well. In multithreading when a thread IOs and is waiting for stuff, another thread will get the CPU as GIL will be released
@lawrencedoliveiro9104
@lawrencedoliveiro9104 Жыл бұрын
Threads preempt automatically, based on priorities or timeslice expiry. Coroutines only get preempted when they explicitly yield to other tasks. This makes for a simpler programming model.
@avivran1198
@avivran1198 Жыл бұрын
@@lawrencedoliveiro9104 It sounds like a very undeveloped multi-threading infrastructure that needs such a ridiculous mechanism RTOS kernels support it natively (including prioritizing threads which are not available with python GIL
@lawrencedoliveiro9104
@lawrencedoliveiro9104 Жыл бұрын
@@avivran1198 Threads were very big in the 1990s. And sure, all modern OSes and languages support them. It’s just that we don’t always need their complications.
@yourfriendlyneighborhood5547
@yourfriendlyneighborhood5547 3 жыл бұрын
Keep going brother. Thank you so much for this channel and your videos ❤
@NeuralNine
@NeuralNine 3 жыл бұрын
thanks for watching :)
@joshboye1427
@joshboye1427 2 жыл бұрын
Thank u very much man. Helped a lot. U explained it in a very elaborate and understandable way.
@AmitabhSuman
@AmitabhSuman Жыл бұрын
Crisp and Clear! Perfect. Thanks a ton!
@CarterCovers55
@CarterCovers55 3 жыл бұрын
Nice balance of explanation and elaboration, much appreciated!
@SamirMamude
@SamirMamude 2 жыл бұрын
This is the best explanation about async/wait in Python, thank you buddy!
@ksr11
@ksr11 3 жыл бұрын
Nicely explained. I watched other videos on same topic. But I got the real subject from this video only. Well understood difference between thread and asyncio.
@임상일-h7f
@임상일-h7f Жыл бұрын
That content is very helpful! Thank you for clarifying explanation!
@asadcomputee3942
@asadcomputee3942 Жыл бұрын
Great video. It was easy to digest and it was fast to the point. Thank you!
@ani-zxk
@ani-zxk 9 ай бұрын
neuralnine coming in clutch AGAIN.
@adityajha2553
@adityajha2553 9 ай бұрын
Very clean explanation, Thanks!
@diegocassinera
@diegocassinera 2 жыл бұрын
You should have also printed time in millis along with the a b 1 2. Important note, even do the program had total sleep of 3 seconds, the actual total running time of the program is less.
@matiascardenas6769
@matiascardenas6769 Жыл бұрын
Nice stuff, in a few minutes I was able to get a good idea of asyncio and clear quite some doubts. Thanks!
@debhasish
@debhasish Жыл бұрын
very nicely explained, Thank you for the tutorial
@floatingpointbr
@floatingpointbr Жыл бұрын
You don't look nerdy but your lecturing was actually very good.
@ds-f7g
@ds-f7g 2 жыл бұрын
Perfect video - definitely the easiest to follow explanation of this topic that I've seen so far. Thanks!
@viveksagarpandey6627
@viveksagarpandey6627 3 жыл бұрын
Easily explained with efficiency. Thanks man !!
@t3lls
@t3lls Жыл бұрын
Best video to the topic! Thank you!
@coenfuse
@coenfuse 9 ай бұрын
Thanks man. Loved this video.
@raizdesamauma8607
@raizdesamauma8607 Жыл бұрын
Great explanation, man, thanks a lot!
@tobychen8832
@tobychen8832 7 ай бұрын
Thank you for your nice video. I learned a lot from it.
@miraclechielota3709
@miraclechielota3709 Жыл бұрын
very well explained Thanks so much
@moimiess
@moimiess 3 жыл бұрын
Awesome, just as I was looking into async you uploaded this. You helped alot, thank you! Btw: holy biceps!
@NeuralNine
@NeuralNine 3 жыл бұрын
thanks brother :D
@teeseus8822
@teeseus8822 2 жыл бұрын
at10:20 u could also just use f"{return_value = }"
@PedroContipelli2
@PedroContipelli2 Жыл бұрын
Amazing explanation!
@Spiray
@Spiray 3 жыл бұрын
Wonderful explanation and great examples, thank you.
@renataalmiratoth3110
@renataalmiratoth3110 Жыл бұрын
you can use the asyncros function for making a illusion of the mesages lagging but their not lagging
@Man-Vs-Car
@Man-Vs-Car 3 жыл бұрын
Love the lessons, thanks man, keep it up 👏🏽
@srana977
@srana977 3 жыл бұрын
Well explained, I watched 7-8 videos before this and this is the best explanation. Great work. Would like to see more on Asyncio and also Go tutorials :)
@soumya32
@soumya32 Жыл бұрын
I am getting the error "partially initialized module 'asyncio' has no attribute 'run " . any solution?
@Ayoubased
@Ayoubased 3 жыл бұрын
thank you for the video, just stepped upon your channel and watched alot of videos. Idk why but I cant get my head around asynchronous programming. I know it is basically telling the process to stop wasting time and do something whenever ur waiting. But the implementation is hard for me to understand.
@dancorwin9232
@dancorwin9232 3 жыл бұрын
Excellent explainer for a beginner like me. Thanks man!
@dontbetoxic4387
@dontbetoxic4387 3 жыл бұрын
wait thats awesome i want to learn the asyncio module because of your sockets video
@GelsYT
@GelsYT 2 жыл бұрын
THANK YOU! VERY CLEAR EXAMPLE😁
@benlong1062
@benlong1062 3 жыл бұрын
Thanks for this great explanation and example of async and await. I'd heard it mentioned a lot in other tutorials but never knew what it really meant.
@msreeram8825
@msreeram8825 3 жыл бұрын
Man, I rarely subscribe to channels.. and you made me do it.. a sub from me♥️. Underrated content👌🏻
@mohammedabdelfattahgheffar3659
@mohammedabdelfattahgheffar3659 11 ай бұрын
Thank you this very helpful
@yankunbigcat7925
@yankunbigcat7925 2 жыл бұрын
well explained, thank you!
@mightyplayer6977
@mightyplayer6977 2 жыл бұрын
Saved my day, thanks.
@gri4on
@gri4on 2 жыл бұрын
Best explanation
@wakgate577
@wakgate577 2 жыл бұрын
Thx man it was very clear!
@nishantkaranjavkar3450
@nishantkaranjavkar3450 Ай бұрын
Great explain
@EnglishRain
@EnglishRain 3 жыл бұрын
Great explanation, thank you so much!
@bouzie8000
@bouzie8000 9 ай бұрын
This was very very good
@aymancassim8944
@aymancassim8944 3 жыл бұрын
Great video as usual. Will it be possible for you to make a video on the abc library?
@saurabhmahra4084
@saurabhmahra4084 3 жыл бұрын
Freaking amazing explanation!!
@AcidLite
@AcidLite 6 ай бұрын
Very good video.
@judeleon8485
@judeleon8485 3 жыл бұрын
How does one get the return values when create_task has more than one function?
@thelogs9434
@thelogs9434 3 жыл бұрын
u soo cool! Thanks to you, I'm starting to do small projects
@Ariya1234gamer
@Ariya1234gamer 3 жыл бұрын
amazing i was asking myself how its possible :D
@NeuralNine
@NeuralNine 3 жыл бұрын
enjoy :D
@thedevnoteyt
@thedevnoteyt 3 жыл бұрын
Love watching ur videos ❤️🤘
@WaldoTheWombat
@WaldoTheWombat Жыл бұрын
I think you're mistaken, "Asynchronous Programming" is a higher level concept that includes both multiprocessing and multithreading. Plus, i read that Asyncio is multithreading, but where the programmer chooses when to switch between threads.
@gus.stviaaa
@gus.stviaaa 3 жыл бұрын
I love your videos keep going
@OmidAtaollahi
@OmidAtaollahi 9 ай бұрын
helped a lot. tnx
@nachoeigu
@nachoeigu 2 жыл бұрын
Wow, it is an amazing content. Thank you. I would like to know more about asyncio in Python. How did you learn it? Do you recommend some lecture or article?
@Duplicity75
@Duplicity75 Жыл бұрын
Great vid
@Bbdu75yg
@Bbdu75yg Жыл бұрын
Amazing 🎉
@HerozTech
@HerozTech 3 жыл бұрын
My personal hero
@martajunk181
@martajunk181 10 ай бұрын
thank you for the video. I am not sure if your description of the difference between asyncio multithreading is accurate though. Aren't they generally about the same, i.e. concurrency (not parallelism) and the difference would be that in multithreading OS decides when to switch between the threads while in asyncio it is programmer themselves who indicates when it is safe to switch? I am by no means an expert in asynchronous/concurrent programming, so it is more a question than a decisive opinion
@nicovogelaar6427
@nicovogelaar6427 Жыл бұрын
Is it possible to share memory between two asynchronous tasks while they are running?
@yash1152
@yash1152 Жыл бұрын
7:17 hey, i just noticed. so; it means that control doesn't "await" as in pause till the completion of await.sleep right? while it waits for other "await"s? am i right?
@РоманПлетнев-г3э
@РоманПлетнев-г3э 2 жыл бұрын
Thanks for the video, I think I now got the idea HOW it works, but I don't get WHY should I use it? What is the advantage over plain old simple python threads? Python threads are also run concurrently but not in parallel. So it seems like all asyncio is achieving is the same result, just with extra jumping through the hoops with this async/await syntax garbage. While starting a regular thread is literally one line of code and you don't even need to modify the target function in any way. Is it all just to save a couple milliseconds and kilobytes used on creating a new thread?
@lawrencedoliveiro9104
@lawrencedoliveiro9104 Жыл бұрын
Because threads can be preempted at any time, they can lead to mysterious and hard-to-track-down timing-related bugs. Because coroutines only get preempted at the points where you explicitly allow them to, this keeps things simpler.
@Stefkostov
@Stefkostov 2 жыл бұрын
good video
@alejandrorodriguezvelez2326
@alejandrorodriguezvelez2326 3 жыл бұрын
Hi, I need to make http requests to a REST API made in Flask from an app made in Tkinter. My question is if I need to use asyncIO to make the calls or is unnecessary in this case? The REST API was made to do CRUD operations connecting to a SQL database.
@felixwurm1467
@felixwurm1467 2 жыл бұрын
I hate asyncio, i think it's usles, it can't do anything better than normal Threads. I don't even feal that this ist easier. But your Video helped me understand.
@troopekyt
@troopekyt 3 жыл бұрын
ValueError: Unrecognized type code -1 i am using a library called neuralintents to create an AI VIRTUAL VOICE ASSISTANT, but for some reason when i load the model i get that error? any ideas?
@troopekyt
@troopekyt 3 жыл бұрын
I beg you, answer me
@ludovicobaldo8742
@ludovicobaldo8742 2 жыл бұрын
What app do you use for coding?
@user-ee5dm2pv1z
@user-ee5dm2pv1z 7 ай бұрын
bro, this code snippet has proved very helpful in my project, but can you send me the code snippet if I want to print A,B,C asynchronously rather than A and B only, then ??????????????
@jonsnow3513
@jonsnow3513 3 жыл бұрын
Hello what is your type of the mechanical switches , sound is impressive 🎷
@ameliabuns4058
@ameliabuns4058 Жыл бұрын
Why do this instead of just using actual threads/processes?
@joelrendon7775
@joelrendon7775 Жыл бұрын
Not getting the same results. makes hard to follow along/learn if I can't get the same results.
@bretearwood7027
@bretearwood7027 Жыл бұрын
I've been coding for about 3 months now and my arms still aren't as big as yours.. what am I doing wrong?
@nirmaltheprogrammer510
@nirmaltheprogrammer510 3 жыл бұрын
finally 😃. still waiting for reinforcement learning edit : why no reply to me 😅
@ravirajkudal5626
@ravirajkudal5626 Жыл бұрын
Bro you got nice biceps ;)))))))
@RAM-im5lr
@RAM-im5lr 3 жыл бұрын
Waiting for Python ARCADE
@mindedj2
@mindedj2 3 жыл бұрын
Is this a built in color profile or you have your own?
@Dan-wh2wv
@Dan-wh2wv 2 жыл бұрын
My question has noting to do with programming but is your arm real ?
@dinimueterihrhurene2772
@dinimueterihrhurene2772 2 жыл бұрын
cool
@ShukyPersky
@ShukyPersky Жыл бұрын
It seems that this mechanism has too many quirks one should be aware if using it. like the one demonstrated on time 6:34 it seems that "task" was created. On one hand it was invoked though the main thread reached it end, while on the other hand it was invoked but due to release CPU when went sleeping the main thread existed not allowing the "task" to complete properly. This is insane, immature to be used.... kind of a joke Does anyone know a serious documentation on the web which thoroughly explains this mechanism ???? thanks
@yesnonononoooop7920
@yesnonononoooop7920 3 жыл бұрын
OMG IM FIRST! Edit: NEURAL REPLIED ON MY COMMENT! I LOVE HIS VIDS
@NeuralNine
@NeuralNine 3 жыл бұрын
^^
@ragd4L
@ragd4L 3 жыл бұрын
Does the program have 2 threads , one to execute and one to select which function to execute?
@dontbetoxic4387
@dontbetoxic4387 3 жыл бұрын
start a fitness channel pl´z
@stormbytes
@stormbytes 2 жыл бұрын
You totally lost me. I never wrapped my head around this in Javascript either.
@avinashsah5456
@avinashsah5456 3 жыл бұрын
Seriously? No one notices his giant Biceps?
@__3093
@__3093 3 жыл бұрын
for the millionth time what's your intro song name lol
@troopekyt
@troopekyt 3 жыл бұрын
Have u ever heard of shazam u dumbass
@minecraftoyuncusu166
@minecraftoyuncusu166 3 жыл бұрын
Why are you watching this!? Read about the RJVX12 algorithm!
@lirimkusari626
@lirimkusari626 2 жыл бұрын
flori hmmmmmmmm, shiptar koka , e di une, sigg ,qin qin XD
@NeuralNine
@NeuralNine 2 жыл бұрын
I know shiptar means Albanian, but I am from Austria ^^
@lirimkusari626
@lirimkusari626 2 жыл бұрын
is Flori a common name in austria. First time i heard it outside of albania. Much love for the video ❤️.
Thread Pools in Python - Asynchronous Programming
10:25
NeuralNine
Рет қаралды 31 М.
Python Asynchronous Programming - AsyncIO & Async/Await
25:57
Tech With Tim
Рет қаралды 432 М.
FOREVER BUNNY
00:14
Natan por Aí
Рет қаралды 29 МЛН
Yay😃 Let's make a Cute Handbag for me 👜 #diycrafts #shorts
00:33
LearnToon - Learn & Play
Рет қаралды 117 МЛН
The Fastest Way to Loop in Python - An Unfortunate Truth
8:06
mCoding
Рет қаралды 1,4 МЛН
Next-Level Concurrent Programming In Python With Asyncio
19:19
ArjanCodes
Рет қаралды 181 М.
AsyncIO, await, and async - Concurrency in Python
9:12
Socratica
Рет қаралды 110 М.
Please Master These 10 Python Functions…
22:17
Tech With Tim
Рет қаралды 216 М.
Learn Python's AsyncIO in 15 minutes
14:02
Indently
Рет қаралды 53 М.
Unlocking your CPU cores in Python (multiprocessing)
12:16
mCoding
Рет қаралды 309 М.
Python Sockets Simply Explained
39:33
NeuralNine
Рет қаралды 167 М.
Python Threading Explained in 8 Minutes
8:39
NeuralNine
Рет қаралды 157 М.
Python Asyncio, Requests, Aiohttp | Make faster API Calls
17:56
Patrick Collins
Рет қаралды 136 М.