Python Asyncio, Requests, Aiohttp | Make faster API Calls

preview_player
Показать описание
#python #asyncio #aiohttp
Python, asynchronous programming, the event loop... what is all this stuff?

We learn what python is doing in the background so we can make more API Calls faster. We learn how to go from requests to aiohttp in our code, and refactor code for asynchronous programming.

✅✅ Donate ✅✅
I use donated funds to spend money on making fun & informational videos.
ETH Wallet address: 0x9680201d9c93d65a3603d2088d125e955c73BD65

😸😸Join the community!😸😸

All thoughts and opinions are my own.
Рекомендации по теме
Комментарии
Автор

"An event loop is when we let some stuff that takes a long time do it's thing in the background. And when it's all set, the 'event loop' will 'pick it up'." is the most helpful and intuitive definition of event loop I've heard.

saminyead
Автор

I really enjoy the fast-pace and the humor of your tutorials. Keeps me from zoning out. You've got a gift for making these tutorials both informative and enjoyable.

werthersoriginal
Автор

One of the greatest explanations of Async in YouTube.

ermalgashimramori
Автор

Best async explanation in the burger loving world!!!

ubaidulkhan
Автор

You’re the man. 13 second code down to half a second. Thank you

apexlex
Автор

6:12 You could turn any synchronous (i.e. thread-blocking call) into an async one using the to_thread() function available in asyncio with Python 3.9 and later.

lawrencedoliveiro
Автор

you have a skill for making tutorials very engaging. I didn't zone out for a sec

davidkorn
Автор

Fantastic video. I'm working on something for my internship that involves asyncio and aiohttp and this made it very easy to understand what is going on, you explain everything so well

KermitDominicano
Автор

Wow! I hope this legend continues to provide such useful lessons for all of us.

TheHeroIsRisingUp
Автор

Dude this is the best explanation for asyncio that I've seen. I am surprised why this does not have enough views

kevinlao
Автор

Finally, someone who explained it in a language that I know the best FOODS!
Thank you for the tutorial, much love from Iran 😊😊

pouyatoutounchy
Автор

Dude this is the most amusing programming tutorial I've seen in a while! Good stuff, you've got some acting skills

vadim
Автор

Usually i dont understand any of the programming video but this is by far the greatest explanation video ive ever watched

sleepyimsomx
Автор

Incredible. Thank you so much. In the middle of a development that has 300, 000 inevitable API calls. Let me check how it works. Again, Thank you

venkatramachandran
Автор

Ayo this is the best clip I have ever witnessed about making api calls faster, props to u my man!!

evanfonseka
Автор

really enjoyed the part where you shuttle between two pans to check if its done and in the process explaining the purpose event loop

anoopisaac
Автор

Finally understood how to implement asycio.
Very well explained.
You not trying to get everything correct in first attempt and giving errors so viewers can understand why it gave error was something very educational in this video. Subscribed.

.
Автор

Dude, you have an amazing way for teaching things that in another way would result boring and complex. You've won a new and loyal subscriptor from Uruguay.

vulture
Автор

didnt even zone out once, loving this....SUBSCRIBED

FaizanUlHaq-mfzt
Автор

Two things to remember when to use await.

1. You have to await to register the task to the event loop.
2. You have to await the coroutine to return the 'real response'.

jeffreylim