Files
cherrypy_sqlite_restapi/main/modules/delete.py

14 lines
302 B
Python

import cherrypy
class delete(object):
@cherrypy.expose
def index(self):
''' Method for open specific html file
and change it'''
with open('templates/delete.html') as fh:
index_f = fh.read()
result = index_f.format(_title='delete_strana', _heading='delete')
fh.close()
return result