Aiohttp because you can change proxies per request in a client rather than having to set the proxy at the time of creating the client. Httpx would be the better option if they had that one feature
@TimL_2 жыл бұрын
This was brilliant, the more involved topic, the comparisons, discussing correct practices, everything! Keep it up!
@anthonyaouad41902 жыл бұрын
Small nitpick, can you please use time.perf_counter() instead of time.time() since a lot of beginners watch your videos and it's the better function
@cobyiv2 жыл бұрын
Why is it better?
@bongjunjang56832 жыл бұрын
@@cobyiv because perf_counter uses cpu clocks to measure the difference of two function calls, while time.time returns the system time, which is subject to changes by the operating system.
@bongjunjang56832 жыл бұрын
@@cobyiv the system time, also called as ‘real world time’, is always subject to changes because your operating system periodically tries to calibrate the clock with clock synchronization protocol. You should not use system time to measure the difference of two time points because the time measured latter can be smaller than the time measured earlier due to these changes.
@anthonyaouad41902 жыл бұрын
@@cobyiv check out pep418 peps.python.org/pep-0418/#rationale time.perf_counter() has the highest resolution for time deltas and is the one that should be used.
@bytesizedfeed2 жыл бұрын
Could you instead use time.process_time()?
@magno51572 жыл бұрын
I love Python! ... the simplicity of Pythonic ethos reverberates through even 3rd party Python modules
@CppExpedition2 жыл бұрын
Thx Python Engineer for making High Quality Videos!
@theeox2 жыл бұрын
It's funny I recently ran into domaintools switching from requests to httpx and didn't know why. Thanks for the run down!
@uvle-ts8bi2 жыл бұрын
Thankx for breaking it down.. great tutorial for beginners
@Strikeviolet2 жыл бұрын
I used this in our project… best library for async and sync requests
@Zekei12342 жыл бұрын
I was trying to use this, but you can't pass context to event handlers. This means, for instance, that a response handler only knows the response, but it has no knowledge of what the request was. Handlers are only assigned at the client level (no per-request handlers). So to get different handling for each request, you need a new client. This breaks connection pooling. Ultimately, I went with aiohttp, as it allows passing context per request. Hopefully they add this feature to httpx.
@daynetran66972 жыл бұрын
This is a great video that came at the right time! I was working with an API for the past week and the part of the pipeline that took the longest was the APi request through the requests library. Now I'm going to implement this HTTTPX client and also try to work in the Async feature! Thank you! You're awesome!
@toosafelol2 жыл бұрын
httpx is very good library. amazing asyncio support. at my job we have replaced all httprequests in our code base with this. we used aiohttp and requests in the past.
@michak.63252 жыл бұрын
Are there benefits compared to aiohttp? Performance should be comparable, but I'm curious if there is more... probably on testing flask / fastAPI as already mentioned?
@ivan28852 жыл бұрын
so i think, as a HTTP client the bast solution for now is httpx, because AIOHTTP provides httpserver and httpclient as well.
@Assxz Жыл бұрын
aiohttp is faster than async httpx, but need more code to write and less intuitive (like requests library). and httpx supports http/2 which is faster
@ermalgashimramori2 жыл бұрын
Great content, looking forward for more.
@Caedin82 жыл бұрын
It would have been great if you verified that all the 150 Pokemon were successfully gathered after each time trial. We are just trusting that the outcome of the 0.57 second async gather is equivalent to the 7 second synchronous gathering of Pokemon details. I believe you, but I am skeptical and an extra 2 or 3 seconds in the video to print the contents of the lists after would have been appreciated! Thanks
@prateeksarangi91872 жыл бұрын
Thanks mate !! Great one
@JuanDuran852 жыл бұрын
Excellent. Thanks.
@JoshBecigneul2 жыл бұрын
Any thoughts on whether additional code would be needed to handle a server's responses such as HTTP rate-limits?
@vishalmatam2 жыл бұрын
Brilliant video!!
@fredieeevlogs70772 жыл бұрын
wow thanks for the tip
@chizzlemo30942 жыл бұрын
GREAT CONTENT, THANK YOU!
@tusharsnn2 жыл бұрын
have you tried http2 for making request ? what was the performance difference between http 1.1 vs 2 ? I think requests does not support h2 but httpx does.
@shaheerzaman6202 жыл бұрын
Very helpful!
@AiF02 жыл бұрын
Well what is the difference between it and the requests library?
@ChrisHalden0072 жыл бұрын
Interesting. Thanks
@kosmonautofficial2962 жыл бұрын
Great video thanks! Now is this also able to handle well in a multiprocess async fashion? I am looking into aiomultuprocess and not sure if it would be better to run this over aiohttp.
@motaseamyousef76682 жыл бұрын
Hi, thanks for all useful info Could you please make video list for your shorts videos
@Diablerick2 жыл бұрын
Nice.
@techshareurdu39482 жыл бұрын
I am new to your channel
@arthurdujardin28772 жыл бұрын
What is the VS code theme used ? I really like it !
@Lucifer-xk9de2 жыл бұрын
nice demo, the requests does not support asyncio, so there is aiohttp can help. now, we have another library which much convenient than aiohttp. the httpx have the same style as requests..thanks !
@JusticeNDOU2 жыл бұрын
try using timeit to time method execution, python time library is not meant to time method execution
@bigdaddy53032 жыл бұрын
So they combined requests with aiohttp? Don't think I'm going to bother changing my code to just have a single import.
@stevanmeandzija Жыл бұрын
Do you know why memory leak is happening when using in fastapi on linux?
@commerceclassesbygoyalinst83732 жыл бұрын
How Can i Use Place Method with Frames in Tkinter ?
@yashdawani19092 жыл бұрын
import httpx as requests. Boom no refactoring required
@markjones91802 жыл бұрын
What theme do you use in VS code?
@MrEloska2 жыл бұрын
In the last example there is no need for `asyncio.create_task`. You can do it just adding coroutines to list `tasks.append(get_pokemon(client, url))`. What's more - to make this code more "pythonic" you can do it like: `pokemons = await asyncio.gather(*[get_pokemon(client, f"{base_pokemon_url}/{i}") for i in range(1, 151)])` :D
@angeloj.willems43622 жыл бұрын
True. I tried it without asyncio.ensure_future and it worked prefectly.
@techshareurdu39482 жыл бұрын
Can you please make a video on Aws Cloud Front How can I Use This http module with Python
@holthuizenoemoet5912 жыл бұрын
I always wondered if something like this would work to build backend webframework with
@abdoemad39522 жыл бұрын
can you build a desktop app. determining the area of any engineering shapes like rectangle ,..... .
@aminramazanifar97432 жыл бұрын
Can you please give a lecture about 'with' ?
@nicenaija99522 жыл бұрын
How well does this intergrate with Django?
@pritamsarkar33712 жыл бұрын
the last example sometimes is giving "RuntimeError: Event loop is closed" or "httpx.ConnectTimeout" but sometimes it is executing properly, I am using python 3.8. , windows 10,, can you please explain what is happening, and what is the solution?
@pritamsarkar33712 жыл бұрын
got the solution , just need to increase the timeout param
@vraymond20482 жыл бұрын
I'm pretty sure there is ways to archive similiar result with request module and threading.
@angeloj.willems43622 жыл бұрын
That's the method I currently use. But this looks to be faster.
@lucianofeder54222 жыл бұрын
And using async you dont need more threads to just wait requests. You can take advantage of a single thread on those kinda of tasks.
@ehsankabiri8912 Жыл бұрын
Hope some day, httpx supports (Async+Socks5 proxy)
@reinduhr5 ай бұрын
Nice explanation Patrick, but 'Pokémon' is plural. Not 'pokemons'
@Pelmenosaurus2 жыл бұрын
99% modern internet is adult content or advertisement. I remember the times when a page opened in a browser was tens of kilobytes in size, and not like modern monstrous pages in megabytes and tens of megabytes.
@ch4sethe5un2 жыл бұрын
But can't you use requests in asyncio via to_thread?
@hicoop2 жыл бұрын
Looks cool but not enough features to switch from requests
@muhamedqasim53902 жыл бұрын
Which faster httpx or aiohttp
@maqarg Жыл бұрын
🎯 Key Takeaways for quick navigation: 00:00 📖 Introduction to HTTPX 00:27 🚀 Getting Started with HTTPX 01:37 📜 HTTPX Features 02:58 🧪 Basic Functionality of HTTPX 04:05 🔧 Advanced Usage with HTTPX Client 05:27 ⚡ Asynchronous API in HTTPX 06:24 🧪 Testing Web Applications with HTTPX 07:33 🚀 Speed Comparisons 10:58 🎉 Conclusion
@lazyh0rse2 жыл бұрын
Whats the point? If request is working perfectly then i dont see the need for more bloat and dependencies.
@int0matar2 жыл бұрын
Why does python use single-line quotes instead of double quotes when defining a string literal? Golang always uses doubles. What could be the reason for this choice?
@tolia55872 жыл бұрын
You can use double or single-line quotes. For example print("text"more text"text") won't work, but print("text'more text'text") will work
@int0matar2 жыл бұрын
@@tolia5587 I didn't mean it, it's all clear. I'm talking about the fact that it would be more logical to always use double quotes.
@tolia55872 жыл бұрын
@@int0matar Yeah, I agree with you
@Medx1112 жыл бұрын
Make a video about socket
@bayy42022 жыл бұрын
i think requests + asyncio.to_thread way simple and clean kkkk
@DecimasoN2 жыл бұрын
I'd still choose aiohttp over httpx for pure async code
@CodingByAmp2 жыл бұрын
wow
@JokeryEU2 жыл бұрын
its missing http/3
@blueapollo39822 жыл бұрын
Is this better than uvicorn?
@vraymond20482 жыл бұрын
Uvicorn Gunicorn is for server side hosting. In contrast, Request and httpx module is client side to request result from server.
@TNeulaender2 жыл бұрын
It's even better than Excel
@DenisRasulev2 жыл бұрын
Speed comparison starts at 7:33 - kzbin.info/www/bejne/p3LLZpd6hKl9a80
@martinhotmann78682 жыл бұрын
Nice, but honestly for a language that itself does not perform well and therefore always was the perfect wrapper and easy to handle, this async function (the right way) looks way to complicated. They should have made it WAY more simple.
@hansdietrich14962 жыл бұрын
"There is no way to get async with requests" ... well there is, using greenlets and gevent.
@armandophilippe62032 жыл бұрын
threading with request would have beeen as fast...
@akzual502 жыл бұрын
New gen? You mean someone just made helper methods deal with this for you
@ordinarygg2 жыл бұрын
MEMORY LEAKS: httpx.Client and httpx.AsynClient is leaking memory when you are not passing custom ssl_context. So if you use it in production, be cautious behind tutorials in vacuum space != your real code.
@Dan-vu3vt2 жыл бұрын
You're comparing parallelism to synchronous code. This is not really a fair comparison.
@philippelhaus2 жыл бұрын
No http/3…
@SteveWoznokav Жыл бұрын
This is useless without semaphores, you must divide the requests if you have many requests like over 1000
@jerrygeorge1802 жыл бұрын
.
@Quidoute2 жыл бұрын
hell no why every new framework say "next generation framework" just stop saying just GO and do it or you RUST
@Jkauppa2 жыл бұрын
trash expansions upon trash
@Jkauppa2 жыл бұрын
you do thrash just for money sake, nothing useful, therefore trash