Skip to main content

2 docs tagged with "wsgi"

View all tags

Introduction to Web Frameworks: WSGI and ASGI

In the last article, we learned about the request/response cycle that powers the web. A client sends an HTTP request, and a server sends back an HTTP response. But how does a web server (like Apache or Nginx) communicate with a Python script?

What is Flask? A Micro Web Framework

Now that we understand the basic concepts of how the web works, it's time to choose a tool to help us build web applications in Python. There are many choices, but one of the most popular, especially for beginners and for building smaller applications and APIs, is Flask.