1from buildyourownbotnet import create_app 2 3if __name__ == '__main__': 4 app = create_app(test=False) 5 app.run(host='0.0.0.0', port=5000) 6 7