Zencore Application Server.
Project description
Zencore Application Server
Install
pip install zas
Usage
E:\zas\src\scripts>python zas.py
Usage: zas.py [OPTIONS] COMMAND [ARGS]...
Options:
-c, --config FILENAME Config file path, use yaml format. Default to
config.yaml.
--help Show this message and exit.
Commands:
reload Reload application server.
start Start application server.
stop Stop application server.
Example Config
application:
deamon: true
pidfile: /tmp/appname.pid
main: app.main
Create a new type server
from zascore import server
from zascore import set_default_config_path
from zascore import set_default_pidfile
from zascore import set_config_loader
from zascore import default_config_loader
def helloserver_loader(config):
data = default_config_loader(config)
data["server-name"] = "hello server v1.0.0"
return data
if __name__ == "__main__":
set_default_config_path("/etc/helloserver.yaml")
set_default_pidfile("/var/run/helloserver.pid")
set_config_loader(helloserver_loader)
server()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
zas-0.2.0.tar.gz
(3.2 kB
view details)
File details
Details for the file zas-0.2.0.tar.gz.
File metadata
- Download URL: zas-0.2.0.tar.gz
- Upload date:
- Size: 3.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3d016aaf6c027037416754464fee573db9eb5e92af629cecc5f5aa1b4fe2e302
|
|
| MD5 |
6e61d84ed8b2afcc1fe197959384c141
|
|
| BLAKE2b-256 |
2c44cc68091a7953f1f78703ee54b6348e8400ce16372e417e4b8424efe4ee2b
|