import sys import cherrypy import cherrypy_cors import handler from config import server from config import directory if __name__ == '__main__': dirconfig = directory.dirconfig update = server.update if len(sys.argv) >= 3: update["server.socket_host"] = sys.argv[1] update["server.socket_port"] = int(sys.argv[2]) cherrypy_cors.install() cherrypy.config.update ( update ) cherrypy.quickstart ( handler.handler(), config = dirconfig ) else: print ("Usage : python costa.py ") print ("Example : python3 costa.py localhost 81 CostaPySample")