> I am making an app where I pass variables and run lots of scripts. I > don't think a frame work can do what I am trying to do, manual control > is a must. Plus the framework documentation that I've seen is > difficult to understand. I was raised as a biochemist not a programmer > ;) If you can point out an easy to understand frame work I'll > certainty take a look.
Since you don't have much experience with Web apps or WSGI, I'd strongly suggest to start with some framework. Django has pretty good documentation and even if I personally don't use it, I think it's very good for newbies. You could also look at flask - it has great documentation too, but you need to know more about web apps with it - http://flask.pocoo.org/. It's perhaps on the opposite end of the spectrum of web frameworks compared to Django, but has good documentation too. >From your comments in this group, I would not suggest you to use plain WSGI. You will need to understand and know much more about http, html, security issues etc. Also, if your application is not going to be heavily visited, you might not need mod_wsgi either. Most WSGI frameworks come with their own python server. And last, learn to use virtualenv and pip, and you will be able to pack your entire web application, including Django in a single directory. And lear some Unix command line interface (or shell), it will really make your life easier. -- damjan -- You received this message because you are subscribed to the Google Groups "modwsgi" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/modwsgi?hl=en.
