Skip to content

Instantly share code, notes, and snippets.

@Timtech4u
Last active January 5, 2020 09:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Timtech4u/c6b701830cc4ab2bef09d8f0f4d52766 to your computer and use it in GitHub Desktop.
Save Timtech4u/c6b701830cc4ab2bef09d8f0f4d52766 to your computer and use it in GitHub Desktop.
Simple Hello App in Python(Flask)
from flask import jsonify
def hello_world(request):
"""Responds to any HTTP request.
"""
return jsonify({"message": "Hello World"})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment