1 2 3 4 5 6 7
#!/usr/bin/python # coding: utf-8 import bottle from ebus import web if __name__ == "__main__": bottle.run(web.app, host="0.0.0.0", port=8000, reloader=True)