Best Flask open-source libraries and packages

Flask_sse_example_project

Flask, Waitress and Javascript used for multiple Server-sent event streams to enable long running jobs web browser auto-refresh
Updated 1 month ago

Flask, SSE, JS example project

Flask, Waitress and Javascript used for 1-N Server-sent event streams to enable long running jobs state auto-refresh visualized in a HTML table in the browser

Server-Sent Events (SSE) is a server push technology enabling a client to receive automatic updates from a server via HTTP connection. The Server-Sent Events EventSource API is standardized as part of HTML5 by the W3C.

Currently this project is designed to run on Windows, but if you replace Waitress WSGI with Gunicorn for instance, it can run also on *nix based OS

This project needs to be run in a browser fully supporting HTML5

10000 ft. overview Diagram

alt text

Screenshots from the web app

alt text

How it works

  1. Flask backend before each app startup imports blueprints with the SSE streaming routes from the folder /blueprints/
  2. These routes publish the events into http://127.0.0.1:80/streams/<stream_name>
  3. Flask generates the HTML templates, template stream.html has JavaScript code attached, which uses JSON2HTML JS library to change the event stream from JSON to HTML table rows and injects these rows in the table used for jobs statuses visualization
  4. You can create a new stream by importing and registering into app.py a new blueprint

How to get started

  1. Git clone this repository
  2. Create and activate yourself a Python virtual environment
  3. run pip3 install -r requirements.txt
  4. set your Windows Python working directory to C:\<<<folder where you cloned this repo to>>>\flaskr
  5. run python3 C:\<<<folder where you cloned this repo to>>>\flaskr\app.py

Useful links: