So its python time. Lets talk a bit about web.py. It is a extremely simple Python web developement framework. I show you the reason by creating some “Hello World” application below.
First, you have to import the core modules in your python file. Then create some routing rule for your web’s url. Next, create a web.py instance. After that, create a class that reprisent your application. And last, run the web.py object. So here the sampe code from my index.py file:
Continue reading…