Advertisement
Guest User

index Method

a guest
Feb 22nd, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.20 KB | None | 0 0
  1.     @cherrypy.expose
  2.     def index(self):
  3.         cherrypy.log("Whoa! Someone visited my site!")
  4.         with open("index.html", "r") as file:
  5.             index_contents = ""
  6.             index_contents = file.read()
  7.         return index_contents
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement