I am trying to run this code: import web urls = ( '/', 'index' ) if __name__ == "__main__": app = web.application(urls, globals()) app.run() But it gives me this error everytime C:\Users\aidke\Desktop>python app.py Traceback (most recent call last): ...
Home/runtime-error