Rich implementation for Flask
Project description
Flask Rich
Implements the Rich programming library with Flask. All features are toggleable, including:
- Better logging
Usage
Import the RichApplication
class.
from flask_rich import RichApplication
from flask import Flask
rich = RichApplication()
app = Flask(__name__)
app.config["RICH_EXAMPLE_SETTING"] = "value"
rich.init_app(app)
# Or
# rich = RichApplication(app)
Class options
RICH_LOGGING: bool = True
Whether to use Rich's logging handler.
RICH_LOGGING_MARKUP: bool = True
Whether to allow Rich's console markup format in logging.
An example of console markup is [blue]Hello[/blue], world!
.
RICH_TRACEBACK: bool = True
Whether to use Rich's traceback handler.
RICH_TRACEBACK_EXTRA_LINES: int = 1
When Rich prints the lines of code which raised the error, how many lines around it does it print as well. In the library it defaults to 3, but 1 is better for web applications.
RICH_TRACEBACK_SHOW_LOCALS: bool = False
Whether to print the local variables with traceback.
Contributing
PRs are welcome! You can setup your own copy of the source code with:
# Git
git clone https://github.com/BD103/Flask-Rich.git
cd Flask-Rich/
# Poetry
poetry lock
poetry install
poetry shell
You will need Poetry for managing dependencies.
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
Built Distribution
Hashes for Flask_Rich-0.2.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 23687ee289adc770788d3ba38d566ded1252b97e64c753df2c5d7081d4c039f0 |
|
MD5 | 388eebeb9384136c85eef4b999046fcd |
|
BLAKE2b-256 | 8110a7e1b383cb41fecc96021103aef2698af79771e5dc1e3c1991be82f1cf1f |