Hello there,
I am just getting to know with all these stuff, and need some help. I have the file asfasf_pythonanywhere_com_wsgi.py. I would have expected it to be index.py or whatsoever. I can't understand why is it the equvialent of index.html whatsoever. Another question is how to add more python code to build other parts of my website. I mean something like a contact.py to generate contact.html. Could you please tell me what does urls=(... does in the following snippet, and how to solve the above issues.
import web
urls = (
'/', 'index'
)
class index:
def GET(self):
web.header('Content-Type','text/html; charset=utf-8', unique=True)
Sorry for my bad English!
Thank you very much indeed,