Spaces:
Sleeping
title: Server-Sent Events (SSE) Demo with FastAPI
emoji: 📚
colorFrom: indigo
colorTo: gray
sdk: docker
pinned: false
Server-Sent Events (SSE) Demo with FastAPI
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.
Table of Contents
Overview
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.
Installation
Clone the repository to your local machine:
git clone https://github.com/AndreyKlychnikov/fastapi-sse.gitNavigate to the project directory:
cd sse-fastapi-demoInstall the required Python dependencies using
poetry:poetry install
Usage
Start the FastAPI application:
uvicorn main:app --reloadThe 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.
License
This project is licensed under the MIT License - see the LICENSE file for details.