Skip to content

Instantly share code, notes, and snippets.

@alperen-selcuk
Created May 14, 2021 11:28
Show Gist options
  • Save alperen-selcuk/78bac55c00f34271facecc3b0578aabf to your computer and use it in GitHub Desktop.
Save alperen-selcuk/78bac55c00f34271facecc3b0578aabf to your computer and use it in GitHub Desktop.
app1 with lb
from flask import request, Flask
import json
app1 = Flask(__name__)
@app1.route('/')
def hello_world():
return 'this is response from app1'
if __name__ == '__main__':
app1.run(debug=True, host='0.0.0.0')
#5000 portundan cevap verecek.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment