https://github.com/zabertech/python-izaber-flask-wamp
Adds WAMP support to Flask in iZaber applications
https://github.com/zabertech/python-izaber-flask-wamp
Last synced: 14 days ago
JSON representation
Adds WAMP support to Flask in iZaber applications
- Host: GitHub
- URL: https://github.com/zabertech/python-izaber-flask-wamp
- Owner: zabertech
- License: other
- Created: 2018-07-23T04:28:41.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-11-04T15:50:09.000Z (over 5 years ago)
- Last Synced: 2025-10-28T11:40:36.763Z (4 months ago)
- Language: Python
- Size: 58.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
==========
izaber.flask
==========
Overview
========
Just offers a bit of integration for Flask so that configuration of the server can be accomplished in the izaber.yaml file.
Documentation
=============
from izaber import initialize
from izaber.flask import app
@app.route('/')
def hello_world():
return 'Hello, World!'
if __name__ = '__main__':
initialize('example')
app.run()
Installation
============
Install by using:
pip install izaber-flask