Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions myapp-01-python.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,9 @@
def print_greetings():
return 'Hello World'

@app.route('/hello/<name>')
def print_custom_greetongs(name):
return f'Hello {name} , How are you feeling today?'

if __name__ == '__main__':
app.run(debug = True)