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: [email protected]
         Web Site: http://nick.oncrete.gr
 --------------------------------------------------------------

--
You received this message because you are subscribed to the Google Groups "Django 
users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/django-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to