On 10/06/2013 05:10 μμ, Nafiul Islam wrote:
> Hi!
> I would be grateful to any link to a comprehensive resource, that
> shows you how to make a simple Hello World webpage, from how you
> install software that you need to writing pure python (without a
> framework) that can handle requests, and work with databases.
>
Hello, you could take a look at the classic cgi concept. It is the base
on which all wsgi,fastcgi and the rest of the family stand.
You have the webserver who accepts a request, the web server passes the
request to a program (of any language) through an interface ( cgi,wsgi
etc) the program returns through the same interface a response, the
webserver returns the response to the world.
A simple idea with a lot of consequences...
--
--------------------------------------------------------------
Nick Apostolakis
e-mail:
nick...@oncrete.gr
Web Site:
http://nick.oncrete.gr
--------------------------------------------------------------