Files
cherrypy_sqlite_restapi/examples/cherry_hello_world.py
2019-06-18 08:51:21 +02:00

14 lines
303 B
Python

import cherrypy
class HelloWorld(object):
@cherrypy.expose
def index(self):
with open('./templates/index.html') as fh:
index_f = fh.read()
result = index_f.format(_title='Nazev_stranky', _nadpis='Cokoliv!')
return result
cherrypy.quickstart(HelloWorld())