Skip to content

Instantly share code, notes, and snippets.

@kedevked
Created April 28, 2019 17:43
Show Gist options
  • Save kedevked/8b6caf22ff05c94e88ad4d2fb4c1fed2 to your computer and use it in GitHub Desktop.
Save kedevked/8b6caf22ff05c94e88ad4d2fb4c1fed2 to your computer and use it in GitHub Desktop.
run flask without thread
if __name__ == "__main__":
app.run("0.0.0.0", port=5000, debug=False, threaded=False)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment