Flask LogSocketIo module
Project description
Flask-logsocketio
Flask-logsocketio generate on socketio “log” log of your application
It use flask-socketio module
Installation
pip install flask-logsocketio
Or
git clone https://github.com/fraoustin/flask-logsocketio.git cd flask-logsocketio python setup.py install
Usage
from flask import Flask, request, current_app
from flask_logsocketio import LogSocketIO
app = Flask(__name__)
app.secret_key = 'super secret string'
app.register_blueprint(LogSocketIo(ui_testing=True))
@app.route("/")
def hello():
current_app.logger.error("error from hello")
current_app.logger.info("info from hello")
current_app.logger.debug("debug from hello")
return "Hello World!"
if __name__ == "__main__":
app.run(port=8080)
Feature
V. 0.1.4
hotfix requirement
V. 0.1.1
add param url_prefix
V. 0.1.0
init
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
flask-logsocketio-0.1.4.tar.gz
(13.2 kB
view details)
File details
Details for the file flask-logsocketio-0.1.4.tar.gz.
File metadata
- Download URL: flask-logsocketio-0.1.4.tar.gz
- Upload date:
- Size: 13.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7282cb32ea2c57d8739b3b22681ed32502445fca75610d2706e7460033120c85
|
|
| MD5 |
7a82e6ca9293ad397a663666e56e0707
|
|
| BLAKE2b-256 |
b678a30be76cf865fee0e2be84d975801c2d40952ecd66eac31ed65d8d7d42cf
|