> On 28 Jun 2017, at 2:12 PM, Vigneshrajan <[email protected]> wrote:
> 
> Am new to WSGI. What is WSGI script. Previously we used Slicer.ini . how to 
> configure models,stores,server,workspace as in slicer configuration in WSGI 
> script. 

If you are new to writing Python web applications, I would recommend you go 
first learn how to write some simple applications using the Flask micro 
framework. The Flask framework provides a much easier way of writing web 
application in Python.

You can find Flask at:

    http://flask.pocoo.org/ <http://flask.pocoo.org/>

If you want something more sophisticated, then also consider looking at Django:

    https://www.djangoproject.com/ <https://www.djangoproject.com/>

 Either way, do not use raw WSGI. A web framework will save you a lot of time 
as it will do things properly for you and also can include or can be easily 
used with a database model layer.

When you have the application sorted out, both frameworks support being run on 
top of a WSGI server such as mod_wsgi.

Graham

-- 
You received this message because you are subscribed to the Google Groups 
"modwsgi" 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 https://groups.google.com/group/modwsgi.
For more options, visit https://groups.google.com/d/optout.

Reply via email to