Metadata-Version: 2.1
Name: flask-desktop-ui
Version: 0.2
Summary: Desktop web user interface using Flask APP as backend
Home-page: https://github.com/jamofer/flask-desktop-ui
Author: Javier Moragón
Author-email: jamofer@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Desktop Environment
Classifier: Topic :: Internet
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Browsers
Classifier: Topic :: Software Development :: User Interfaces
Requires-Python: !=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,<3.8,>=2.7
Description-Content-Type: text/markdown
Requires-Dist: cefpython3
Requires-Dist: flask
Provides-Extra: testing
Requires-Dist: flake8 ; extra == 'testing'
Requires-Dist: pytest ; extra == 'testing'
Requires-Dist: mock ; extra == 'testing'

# flask-desktop-ui
Desktop web user interface using Flask APP as backend.

## Install
```shell
pip install git+https://github.com/jamofer/flask-desktop-ui.git
```

## Usage
```python
from flask import Flask
from flask_desktop_ui import FlaskDesktopUI


app = Flask(__name__)


@app.route('/')
def hello():
    return 'Hello!'


def main():
    desktop_app = FlaskDesktopUI(app)
    desktop_app.run()


if __name__ == '__main__':
    main()
```

You can find more examples in `examples` folder


