remisc.server
index
c:\users\brian\projects\remisc\server.py

Provides the WSGI application entry point for ReMiSC microservices. This means
serving the WSGI-compliant app() method of a Service-derived object
instantiation using the built-in WSGI reference server. Command-line
arguments take a fully-qualified package/module/class name string to the
Service-derived class whose instantiation will be used to provide app(). When
invoked from the command line without an argument, this defaults to the base
Service class.

 
Modules
       
importlib
remisc.service
wsgiref.simple_server
sys

 
Functions
       
main(ip='127.0.0.1', port=8000, Svc=<class 'remisc.service.Service'>)
Instantiates an object of the Service-derived class whose app() method
will be used to generate responses. This instance is then bound to a
reference WSGI server. The server is started on the given IP and port
(defaulting to 127.0.0.1:8000), and the default Service class is the base
remisc.service.Service class itself.