https://github.com/bergpb/flask-pwa
A extension to give a PWA experience into your Flask app.
https://github.com/bergpb/flask-pwa
flask flask-extensions pwa python
Last synced: 5 months ago
JSON representation
A extension to give a PWA experience into your Flask app.
- Host: GitHub
- URL: https://github.com/bergpb/flask-pwa
- Owner: bergpb
- Created: 2020-04-28T19:01:28.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-10-19T12:13:42.000Z (over 2 years ago)
- Last Synced: 2025-09-22T15:14:13.476Z (9 months ago)
- Topics: flask, flask-extensions, pwa, python
- Language: Python
- Homepage: https://pypi.org/project/flask-pwa
- Size: 202 KB
- Stars: 29
- Watchers: 2
- Forks: 9
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Flask-PWA


A extension to give a PWA experience into your Flask web application.
This extension provide some files to give your app some PWA experience like app installation, cached files and offline page.
### Requires:
- Flask
- Jinja
### Installation:
To use Flask-PWA extension in your project you need to install it with pip.
```bash
pip install flask-pwa
```
### How it works
Flask-PWA provide some configuration files into your app: ```manifest.json```, ```sw.js```, ```offline.html``` and ```icons```, to deliver best PWA experience.
PWA use this files to configure the minimum environment to works.
### ToDo:
- [ ] User can provide your configuration files, overwriting default package files, like ```offline.html```, ```manifest.json```, ```sw.js```.