A toolkit for rapid development of simple gov.uk services
Project description
fast-gov-uk
Fast-gov-uk is a new toolkit for rapid development of simple gov.uk services.
Fast-gov-uk is three things -
- an implementation of gov.uk design system in Python using FastHTML
- lightweight scaffolding for common service patterns e.g. forms
- designed from the ground-up for AI agents to help with rapid development
Installation
$ pip install fast-gov-uk
A Simple Example
# save this as app.py
from fast_gov_uk import Fast, serve
from fast_gov_uk import design_system as ds
fast = Fast()
@fast.page("/")
def get_started():
return ds.Page(
ds.Warning("This is a demo and not a real service"),
ds.H1("Welcome to the service"),
ds.P("You will need the following information handy:"),
ds.Ul(
ds.Li("NI Number"),
ds.Li("Date of birth"),
ds.Li("Email"),
bullet=True,
),
ds.StartButton("I am ready", "/forms/"),
)
serve(app="fast")
$ python app.py
Point your browser to: http://localhost:5001 -
Resources
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
fast_gov_uk-0.9.1.tar.gz
(1.4 MB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
fast_gov_uk-0.9.1-py3-none-any.whl
(498.9 kB
view details)
File details
Details for the file fast_gov_uk-0.9.1.tar.gz.
File metadata
- Download URL: fast_gov_uk-0.9.1.tar.gz
- Upload date:
- Size: 1.4 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dac8fe939f795cc0fc6ac0374e5a1f608caa462b599cf43bae6e4e1e6bad0e94
|
|
| MD5 |
f17ddb89673c39d51cdc8a01ce025bdf
|
|
| BLAKE2b-256 |
74d6c9a7e0ad67c79675525b07d03c54a4edc7b5f45eabfafa2e86bc1a48f5c1
|
File details
Details for the file fast_gov_uk-0.9.1-py3-none-any.whl.
File metadata
- Download URL: fast_gov_uk-0.9.1-py3-none-any.whl
- Upload date:
- Size: 498.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3130509fbe32eb619d700d79c8c8c2c60f6d3e45e6f249cd59304b800cce6dab
|
|
| MD5 |
077d76a72d566b2c34f8bb28e74e49a2
|
|
| BLAKE2b-256 |
d7d770a5b4d6feb58db53f61ee4ec1b9f6682fd915530eb7850ca57f356c194a
|