MCPcopy
hub / github.com/Asabeneh/30-Days-Of-Python / home

Function home

python_for_web/app.py:11–14  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

9
10@app.route('/') # this decorator create the home route
11def home():
12 techs = ['HTML', 'CSS', 'Flask', 'Python']
13 name = '30 Days Of Python Programming'
14 return render_template('home.html', techs=techs, name=name, title='Home')
15
16
17@app.route('/about')

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected