Flet for Fast API - serve Flet app with Fast API server
Project description
Flet - a better UI for FastAPI
Flet for FastAPI allows adding interactive real-time dashboards to your FastAPI app as well as host any Flet web app inside FastAPI with production-grade reliability.
Installation
pip install flet-fastapi
First app
Create counter.py
with the following content:
import flet as ft
import flet_fastapi
async def main(page: ft.Page):
counter = ft.Text("0", size=50, data=0)
async def add_click(e):
counter.data += 1
counter.value = str(counter.data)
await counter.update_async()
page.floating_action_button = ft.FloatingActionButton(
icon=ft.icons.ADD, on_click=add_click
)
await page.add_async(
ft.Container(counter, alignment=ft.alignment.center, expand=True)
)
app = flet_fastapi.app(main)
That's a simple app displaying a counter and a button at the right bottom to increment that counter.
flet_fastapi.app()
configures a single Flet app at the root of FastAPI app with main()
sessions handler and the following endpoints:
/ws
(WS) - WebSocket handler for the Flet app.
/upload
(PUT) - file uploads handler.
/oauth_callback
(GET) - OAuth flow callback handler.
/
(GET) - Flet app static files with SPA catch-all handler.
Running the app locally
Install Uvicorn web server:
pip install uvicorn
Start uvicorn
with:
uvicorn counter:app
Open the browser and navigate to http://127.0.0.1:8000 to see the app running.
Hosting multiple Flet apps under the same domain
import flet as ft
import flet_fastapi
async def root_main(page: ft.Page):
await page.add_async(ft.Text("This is root app!"))
async def sub_main(page: ft.Page):
await page.add_async(ft.Text("This is sub app!"))
app = flet_fastapi.FastAPI()
app.mount("/sub-app", flet_fastapi.app(sub_main))
app.mount("/", flet_fastapi.app(root_main))
Sub-apps must be mapped before the root Flet app as it configures catch-all index.html
for SPA.
Run the app with uvicorn
and visit http://127.0.0.1:8000 and then http://127.0.0.1:8000/sub-app/ to see both Flet apps running. Notice the trailing slash in /sub-app/
URL - without the slash the request will be routed to a root app.
Adding Flet to the existing FastAPI app
from contextlib import asynccontextmanager
import flet as ft
import flet_fastapi
from fastapi import FastAPI
@asynccontextmanager
async def lifespan(app: FastAPI):
await flet_fastapi.app_manager.start()
yield
await flet_fastapi.app_manager.shutdown()
app = FastAPI(lifespan=lifespan)
async def main(page: ft.Page):
await page.add_async(ft.Text("Hello, Flet!"))
app.mount("/flet-app", flet_fastapi.app(main))
When adding Flet app to the existing FastAPI app you need to call flet_fastapi.app_manager.start()
on app start and flet_fastapi.app_manager.shutdown()
on shutdown. Use the way that best suites you: lifespan (in the example above) or app events.
app_manager.start()
method starts background tasks cleaning up expired sessions and OAuth flow states.
app_manager.shutdown()
method removes any temporary files created by a Flet app.
Running the app in production
It is recommended to run FastAPI in production with Hypercorn which is ASGI web server, but it is also possible to run FastAPI apps with Gunicorn which is a WSGI server, but has more features, like passing proxy headers.
To install Gunicorn:
pip install gunicorn
Start gunicorn
with:
gunicorn -k uvicorn.workers.UvicornWorker counter:app
Reference
Environment variables
FLET_SECRET_KEY
- secret key to sign upload requests. Must be set if upload directory is configured.
FLET_SESSION_TIMEOUT
- the number of seconds to keep session alive after user has disconnected. Default is 3,600 seconds.
FLET_OAUTH_STATE_TIMEOUT
- OAuth state lifetime, in seconds, which is a maximum allowed time between starting OAuth flow and redirecting to OAuth callback URL. Default is 600 seconds.
FLET_MAX_UPLOAD_SIZE
- max allowed size of an uploaded file, bytes.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file flet_fastapi-0.20.2.tar.gz
.
File metadata
- Download URL: flet_fastapi-0.20.2.tar.gz
- Upload date:
- Size: 13.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cd3a9c97af9f7f28ac9d86110d9e95f82c1e57f0cbc24287ae6383308bdda93d |
|
MD5 | 2d2a8a047bddc01e465563fe3fed7a16 |
|
BLAKE2b-256 | 1aeb0b0852a1a01519d19a665a9af40c160ae7a68724bfb27392711e091aaaef |
File details
Details for the file flet_fastapi-0.20.2-py3-none-any.whl
.
File metadata
- Download URL: flet_fastapi-0.20.2-py3-none-any.whl
- Upload date:
- Size: 15.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | efe83eae7000cfb468792dc330edd6d3bade28592511a88a7c7be540868bf7d4 |
|
MD5 | d4e7d45fa0e2a70a83f0e6fb4f962384 |
|
BLAKE2b-256 | 30e66d44d9500a51a11c734f16a5d818793ef8555b3b2d46798fd4c1252de83a |