An open API service indexing awesome lists of open source software.

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.

Awesome Lists containing this project

README

          

# Flask-PWA

![build](https://github.com/bergpb/flask-pwa/workflows/build/badge.svg)
![PyPI](https://img.shields.io/pypi/v/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```.