from . import web
import sys
def main():
web.app.run(host = '0.0.0.0', port = int(sys.argv[2]))
if __name__ == '__main__':
main()