Last updated:
0 purchases
appstart 0.3.1
About
Application server framework help you write long run application.
Install
pip install appstart
Usage
E:\zencore>appserver
Usage: appserver [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 appstart import server
from appstart import set_default_config_path
from appstart import set_default_pidfile
from appstart import set_config_loader
from appstart 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()
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.