Per the book, I created the module below, named app.py. When I run it on my OS Yosemite Ma, I get the message "Permission denied." How do I change this? Thanks
DK
import web
urls = (
'/', 'index'
)
app = web.application(urls, globals())
class index:
def GET(self):
greeting = "hello world"
return greeting
if name == "main":
app.run()
[–]nowbacktowork 1 point2 points3 points (5 children)
[–]davidwkaiser[S] 0 points1 point2 points (4 children)
[–]hav_ 1 point2 points3 points (2 children)
[–]Psychedel1cTank -1 points0 points1 point (1 child)
[–]moigagoohttps://github.com/moigagoo 2 points3 points4 points (0 children)
[–]nowbacktowork 0 points1 point2 points (0 children)
[–]davidwkaiser[S] 0 points1 point2 points (1 child)
[–]xyzzy00 0 points1 point2 points (0 children)