from app import create_app, sIO app = create_app() if __name__ == "__main__": print("Starting server...") sIO.run(app, debug=True, use_reloader=True)