我听到关于樱桃 和好奇心 试图运行这个脚本。
import cherrypy
class HelloWorld(object):
def index(self):
return "Hello World!"
index.exposed = True
cherrypy.quickstart(HelloWorld())
to run this i needed to stop my apache which was already running. after running this for the first time i got the "Hello World" output but now when i am trying to access my localhost:8080 the browser goes into an indefinite long loading state i think their is some conflict between cherrypy and apache or something help me out plz what to do ? Thanks