vara <[email protected] <mailto:[email protected]>> writes: > > > HI, > can some one help me steps to convert a python program into a web > tool. > thanks in adavance > You could use a framework like django (http://www.djangoproject.com) to wrap your application. You could write a mod_python wrapper for your application (google mod_python tutorial to get a walkthrough). You could write a WSGI app using python paste. There's a good introduction at http://pythonpaste.org/do-it-yourself-framework.html
I've done all 3 and each approach has benefits and drawbacks. I'd need to know more about your actual application to be able to make a more educated decision as to what's best for you. If the app is fairly simple and has to just listen to HTTP GET/POST/DELETE/HEAD etc I'd probably write a simple wsgi wrapper. If it had more complex interface requirements and needed to generate web pages I'd probably use django. hope that helps Karl --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Python Ireland" 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.ie/group/pythonireland?hl=en -~----------~----~----~----~------~----~------~--~---
