Files
cherrypy_sqlite_restapi/main/modules/index.py

10 lines
232 B
Python

import cherrypy
class wellcome(object):
@cherrypy.expose
def index(self):
with open('templates/index.html') as fh:
index_f = fh.read()
result = index_f.format(_title='Titulni_strana', _heading='Vítejte!')
return result