This is a simple demonstration of Server-Sent Events (SSE) using FastAPI. It provides a minimalistic frontend that displays real-time updates from the server in a table format.
Server-Sent Events (SSE) is a web technology that allows servers to push real-time updates to web clients over a single HTTP connection. In this project, we use FastAPI to create a simple SSE server and provide a frontend for visualizing the real-time updates.
-
Clone the repository to your local machine:
git clone https://github.com/AndreyKlychnikov/fastapi-sse.git
-
Navigate to the project directory:
cd sse-fastapi-demo
-
Install the required Python dependencies using
poetry
:poetry install
-
Start the FastAPI application:
uvicorn main:app --reload
The application will be accessible at http://localhost:8000.
-
Open a web browser and visit http://localhost:8000 to see the SSE demo in action. The page will display real-time updates in a table format.
This project is licensed under the MIT License - see the LICENSE file for details.