About 43,100 results
Open links in new tab
  1. Uvicorn

    Uvicorn is an ASGI web server implementation for Python. Until recently Python has lacked a minimal low-level server/application interface for async frameworks. The ASGI specification fills this gap, and …

  2. uvicorn · PyPI

    Dec 21, 2025 · Uvicorn is an ASGI web server implementation for Python. Until recently Python has lacked a minimal low-level server/application interface for async frameworks. The ASGI specification …

  3. Kludex/uvicorn: An ASGI web server, for Python. - GitHub

    Uvicorn is an ASGI web server implementation for Python. Until recently Python has lacked a minimal low-level server/application interface for async frameworks. The ASGI specification fills this gap, and …

  4. Unleashing the Power of Uvicorn in Python: A Comprehensive Guide

    Apr 7, 2025 · In the realm of Python web development, having a reliable and high-performance server is crucial. Uvicorn is a lightning-fast ASGI (Asynchronous Server Gateway Interface) server that has …

  5. Understanding Uvicorn: The basics - DEV Community

    Mar 13, 2025 · Uvicorn is an ASGI web server implementation for Python. So, following the same approach as the FastAPI articles, we'll try to understand some concepts and libs before moving on.

  6. Everything You Need to Know About Uvicorn - Medium

    Sep 22, 2023 · Uvicorn, pronounced “you-vee-corn”, stands for “Unicorn serving ASGI”, and it’s an application server used to serve Python web applications that adhere to the ASGI specification.

  7. FastAPI - Uvicorn - GeeksforGeeks

    Jul 23, 2025 · UVICORN is an ASGI (Asynchronous Server Gateway Interface) web server implementation tailored for Python. Before ASGI, Python lacked a minimal low-level server interface …

  8. FastAPI + Uvicorn = Blazing Speed: The Tech Behind the Hype

    Jan 10, 2025 · Answer: Uvicorn is a very fast ASGI (Asynchronous Server Gateway Interface) server built on uvloop and httptools. It is a lightweight and efficient web server framework developed based …

  9. python 3.x - What is the purpose of Uvicorn? - Stack Overflow

    Mar 11, 2022 · uvicorn is an ASGI (async server gateway interface) compatible web server. It's (simplified) the binding element that handles the web connections from the browser or api client and …

  10. Installation - Uvicorn

    When websockets is installed, Uvicorn will use it by default for WebSocket handling. You can alternatively install wsproto and set the --ws option to wsproto to use it instead.