Skip to content

Instantly share code, notes, and snippets.

@alperen-selcuk
Last active May 14, 2021 14:09
Show Gist options
  • Save alperen-selcuk/48c26b08e644078df77f00ac385fbd40 to your computer and use it in GitHub Desktop.
Save alperen-selcuk/48c26b08e644078df77f00ac385fbd40 to your computer and use it in GitHub Desktop.
app2 for lb
from flask import request, Flask
import json
app2 = Flask(__name__)
@app2.route('/')
def hello_world():
return 'this is response from app2'
if __name__ == '__main__':
app2.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