Configuration¶
Introduction¶
Before you can make any projects with view.py, you should learn about how it handles configuration. Configuration is handled by the configzen library under the hood, so most questions about configuration will be answered there.
The Config File¶
When creating your app, view will search for one of the following configuration files:
view.toml
view.json
view.ini
view_config.py
Note that while all of these are different formats, they can all evaluate to the same thing internally. If you have any questions on these semantics, once again see configzen.
Programatically¶
Many Python users aren't fond of the configuration file strategy, and that's okay. View supports editing the config at runtime just fine through the config
property. The config
property stores a Config
object, which holds more subcategories.
view.config.Config
¶
Bases: ConfigModel
Source code in src/view/config.py
Configurations are loaded at runtime by the load_config
function. If you would like to use View's configuration file without creating an App
, you may use it like so:
view.config.load_config(path: Path | None = None, *, directory: Path | None = None) -> Config
¶
Load the configuration file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
path |
Path | None
|
Path to get the configuration from. |
None
|
directory |
Path | None
|
Where to look for the configuration. |
None
|
Source code in src/view/config.py
Settings¶
View has several different configuration settings. For documentation purposes, values will be talked about in terms of Python (i.e. null
values will be regarded as None
).
At the top level, there's one real setting: dev
.
dev
is True
by default, and is what tells view.py whether you're running in a production server setting or just running on your local machine.
Environment Variables¶
If you would like to set a configuration setting via an environment variable, you must account for the setting's environment prefix.
All environment prefixes look like view_<subcategory>_
. For example, the loader
setting is under the app
section, so to set loader
you would use the following command:
App Settings¶
Environment Prefix: view_app_
loader
: This is the strategy that will be used to load routes. Can bemanual
,simple
, orfilesystem
.manual
by default.app_path
: A string defining the location of the app, as well as the variable name. Should be in the format offile_path:variable_name
.app.py:app
by default.uvloop
: Whether or not to useuvloop
as a means of event loop. Can bedecide
or abool
value.decide
by default.loader_path
: When the loader issimple
orfilesystem
, this is the path that it searches for routes.routes/
by default.
Example with TOML:
Server Settings¶
Environment Prefix: view_server_
host
: IPv4 address specifying what address to bind the server to.0.0.0.0
by default.port
: Integer defining what port to bind the server to.5000
by default.backend
: ASGI backend to use. Onlyuvicorn
is supported as of now.extra_args
: Dictionary containing extra parameters for the ASGI backend. This parameter is specific to the backend (onlyuvicorn
, as of now) and not view.
Example with TOML:
Log Settings¶
Environment Prefix: view_log_
level
: Log level. May bedebug
,info
,warning
,error
,critical
, or anint
. This is based on Python's built-in logging module.info
by default.hijack
: This is abool
value defining whether or not to "hijack" the ASGI backend's logger and convert it to view.py's logging style.True
by default.fancy
: Whether to use View's fancy output mode.True
by default.pretty_tracebacks
: Whether to use Rich Exceptions.True
by default.
User Logging Settings¶
Environment Prefix: view_user_log_
urgency
: The log level for user logging.info
by default.log_file
: The target file for outputting log messages.None
by default.show_time
: Whether to show the time in each message.True
by default.show_caller
: Whether to show the caller function in each message.True
by default.show_color
: Whether to enable colorization for messages.True
by default.show_urgency
: Whether to show the urgency for messages.True
by default.file_write
: The preference for writing to an output file, if set. May beboth
, to write to both the terminal and the output file,only
, to write to just the output file, ornever
, to not write anything.strftime
: The time format used ifshow_time
is set toTrue
.%H:%M:%S
by default.
Example with TOML:
Template Settings¶
Environment Prefix: view_templates_
directory
: The path to search for templates../templates
by default.locals
: Whether to include local variables in the rendering parameters (i.e. local variables can be used inside templates).True
by defaultglobals
: The same aslocals
, but for global variables instead.True
by default.engine
: The default template engine to use for rendering. Can beview
,jinja
,django
,mako
, orchameleon
.view
by default.
Example with TOML: