This is the single most important presentation I have ever watched.
4 жыл бұрын
Wow this was the talk I never knew I needed... holy shit. This speaker is amazing. Thank you..
@florinbujoreanu1020Ай бұрын
Incredibly precious information for backend development
@alesolano55073 жыл бұрын
Damn, how I love this video. I watched it 6 months ago and it was sooo revealing. I'm watching it again now and it's even more revealing. Can't wait until next year.
@typwriter1991 Жыл бұрын
Thanks for the explanation and example code on how the WSGI and web server are working together. The code demonstrate how they both work together step byt step in a very clear way.
@Overthought74 жыл бұрын
Holy crap, this was *such* a helpful presentation! Thank you so much!
@d3vwannabe Жыл бұрын
Amazing. I don't see how any free content can be better than this. One of the best I ever seen.
@JesusNoland3 жыл бұрын
Such an amazing presentation. Thank you so much for that breakdown. Been using Django and Flask for years and took WSGI for granted.
@2c7s4 жыл бұрын
Really Impressed with that breakdown of concepts and the demon.
@essamgouda16092 жыл бұрын
What a brilliant presentation. Love it when people abstract ideas that simply, thank you !
@prathameshdesai54842 жыл бұрын
Amazing work! Its years of work and knowledge summarized in 24 mins (awesome flow)
@TheNzdavis3 жыл бұрын
The only presentation that makes sense. Unassuming and well organized, perfect for someone like me who just started using Django. I have been using PHP all my life but now I appreciate python so much. Thanks to you Ryan. :D
@joseduarte56632 жыл бұрын
Awesome talk, there is just so much content on the web that tries to explain this topics but somehow end up missing the point entirely. The actual simple implementation/example is what helped me the most, thank you!
@BioHazarddasdadfasfsad5 жыл бұрын
Either this video is very underrated or nobody bothers himself thinking how the heck request is handled in Jango or in Flask in the background
@sineadward52252 жыл бұрын
or herself
@UnleashedEntomber Жыл бұрын
Great talk, watching 2nd time after 1 year.
@haccks.2 жыл бұрын
I learned it hard way! I went over Django and unicorn source code to understand it. But this is a gem. I wish I could have found this video earlier. Inspired from this talk I rebuild a WSGI server and applications side. I added few more features like handling GET request with query params and POST request etc,. Code is pretty well documented and followed the similar design. Will try to post the link of GitHub repo once push it there.
@ShreyanshMalewar2 ай бұрын
where's the link?
@haccks.2 ай бұрын
@@ShreyanshMalewar KZbin won't let me post link
@a.for.arun_3 жыл бұрын
Absolutely wonderful presentation. Loved it.
@bakza.56615 жыл бұрын
Brilliantly explained, looking forward to attending the next pycon
@usmanmaqsood59454 жыл бұрын
Thank you Ryan for amazing presentation.
@McKisiek2 жыл бұрын
Excellent presentation. Thank you.
@kabakiAntony2 жыл бұрын
This was a very good presentation.
@ahfbemdlcnr4 жыл бұрын
It's CRAZY. What an incredible presentation
@mrlildylchillin Жыл бұрын
This talk was fantastic. Thank you
@domfree77104 жыл бұрын
very informative, good for backend development.
@MagnusAnand4 жыл бұрын
this presentation is amazing
@ehsanjalali45863 жыл бұрын
you make a hard subject simple and understandable, thanks.
@AnantaAkash.Podder Жыл бұрын
Loved the presentation... The exact thing which i wanted... To get to the ROOT level of how Http Reqs are converted in my Django Views...🤔
@robinsingh44924 жыл бұрын
Best explanation about the topic.
@anirudhreddybasani35555 жыл бұрын
Simply superb presentation 👌🙌
@jayhu60754 жыл бұрын
Thanks for this useful talk..Hopely more from this stuff in the future.
@mirmohammadjaber26763 жыл бұрын
Awesome presentation. Thanks.
@AhmedBilalKhalid5 жыл бұрын
Excellent Presentation.
@santidev_3 жыл бұрын
Learned a lot from this presentation, thanks :)
@emadgkamel5 жыл бұрын
Great presentation Ryan, thanks
@abdallahmahmoud86425 жыл бұрын
Great Presentation
@pavolkovalik35933 жыл бұрын
This is excellent explanation.
@friesmaker4 жыл бұрын
Amazing presentation!! Loved it
@hunterxvov4ik9 ай бұрын
simply brilliant
@ИванФеоктистов-ь4э4 жыл бұрын
Thank's man, that's an explanation I was looking for!
@shuvam69523 жыл бұрын
Ten seconds in and I already like it!
@abhinavmishra94013 жыл бұрын
The coolest pycon so far!
@muralidhar402 жыл бұрын
Well done, Ryan.
@scienceblossom61974 жыл бұрын
Really amazing video. Thanks.
@georgeli68203 жыл бұрын
great video! Now I understand it!
@PhilipKavanagh4 жыл бұрын
Excellent Presentation
@zhipengwang14 жыл бұрын
amazing voice, explaination
@JK-sy4ym4 жыл бұрын
This guy is a genius.
@mohamedabdelmoneim57213 жыл бұрын
Awesome task, thank you
@kingmanzhang3 жыл бұрын
It is an excellent talk!
@seburath21884 жыл бұрын
great talk, thank you!
@StrangeIndeed4 жыл бұрын
this needs more views
@yurakhrolenko36052 жыл бұрын
soooo awesome!!!
@aliasnotavailable2 жыл бұрын
great talk
@higiniofuentes25514 жыл бұрын
Very good teaching! But what to do when you can't install the wsgi module. I'm in RHEL8
@carlosblk4 жыл бұрын
im getting this error in the second request: Traceback (most recent call last): File "server.py", line 31, in request_http = parse_http(conn.recv(1024).decode('utf-8')) OSError: [Errno 9] Bad file descriptor
@ndeoligence84 жыл бұрын
Try: ```def start_application(port): with socket.socket() as sock: sock.bind(('localhost', port)) print(f"Listening for connections on port {port}...") sock.listen(1) while True: with sock.accept()[0] as conn: req = parse(conn.recv(1024).decode('utf-8')) print(f"Request: [[{req}]]") if not req: break stat, res = index(req) conn.sendall(fmt(stat, res).encode('utf-8'))```
@ozkaa5 жыл бұрын
brilliant talk!
@abcdefg14924 жыл бұрын
Very nice..I came here because why I don't know what is what when I try to deploy django app in production with apache server...
@edchelstephens3 жыл бұрын
Thank you!
@mehdi-vl5nn3 жыл бұрын
amazing
@shivangitomar55573 жыл бұрын
Amazing!
@AnjaliPardeshi4 жыл бұрын
Thanks a lot!!
@yaswanthravuri84503 жыл бұрын
I wish I could give a presentation like this in my class
@jankinsics5 жыл бұрын
Great talk.
@ahasibrifat75683 жыл бұрын
Thanks a loot man!
@vlad_covers Жыл бұрын
Каеф!
@yaswanthravuri84503 жыл бұрын
Would be better if u have included working of middleware..
@sajal_sarwar4 жыл бұрын
How can I thank this guy? :)
@qzorn44404 жыл бұрын
heeey did these kool names come from the grandkids of the 60"s hippies on lsd?.....:/ wonderful video thanks...:)
@RandomAlexus5 жыл бұрын
Fantastic
@raysilitonga85482 жыл бұрын
Thank you for this great tutorial, much appreciated. However, I need extra guidance relative to my situation. I have built my Python Script on VSCode using Flask Framework. My target is to deploy that Python Script to Apache server without Flask so I can implement thread safe/multi thread/multi process using WSGI as I expect the application will have massive number of users. What is the way forward for me? Again, thank you in advance for any suggestion that you may provide.
@yashvarshney86515 ай бұрын
great
@ChristianReimers-m8p3 ай бұрын
Block Oval
@RobertHomer-p6x3 ай бұрын
Tomasa Radial
@MarcusClement-n1v3 ай бұрын
Kiehn Plain
@AmyFeeney-u7o4 ай бұрын
Lily Street
@EugeneIna-u5e3 ай бұрын
Adele Trace
@JanRiter-i5p3 ай бұрын
Hills Gardens
@HolmesWalton-y2o3 ай бұрын
Brenna Highway
@AmandaMoon-p8w3 ай бұрын
Johnson Lodge
@BenjaminHaines-q1n4 ай бұрын
Kelsie Locks
@pablogarin3 жыл бұрын
wsgi is not magic, but whisky is :D
@EdwTaylor-v9j3 ай бұрын
Trinity Islands
@JuliaAzxcnn3 ай бұрын
Rolfson Drives
@ClarkTriller-z3k4 ай бұрын
Caden Track
@NedLong-h8z4 ай бұрын
Kameron Passage
@SamuelHellickson-s4z3 ай бұрын
Larissa Groves
@RicoMcelravy-h3w3 ай бұрын
Tyrel Pike
@ParkerJune-e4b3 ай бұрын
Wunsch Harbors
@RubyTripp-h9m3 ай бұрын
Zack Port
@834573 жыл бұрын
Please redo this talk as a musical. kthxbye
@AllineLaza-u2c3 ай бұрын
Zemlak Locks
@AlesandroDushku-b8q3 ай бұрын
Judah Court
@abhijithalder45674 жыл бұрын
Wisgi developers are only jealous, thats why they disliked this simplicity