I would like to create a billing application and would like to have it as a software as a service (SaaS) so that the hotels and banks could use that application. I have heared about many framework like (Django, Pylons, Werkzeug and Turbogears), but i dont know which to pick it up for developing the SaaS application. Please help me out

link|improve this question

50% accept rate
1  
What is your definition of "better" ? And what are your requirements for the application? Almost every framework has its strong points and weak points. – Frank Heikens Dec 27 '10 at 7:12
The problem is that the entire billing application is already developed in .net and they wanted me to develop it in python so that they can offer it as a software as a service. The billing application is pretty impressive and lots of company's are already using it on Intranet. They are having hard time to manage the billing application for the company's running on the intranet. I already have good knowledge about python as i have done a lot of automation scripting in Linux. But i dont know which framework to use...... – fear_matrix Dec 27 '10 at 8:04
secondly they had a very bad experience managing the application on .net and they are preferring to switch to python. So as a project manager i have to come up with a solution. – fear_matrix Dec 27 '10 at 8:06
feedback

closed as not constructive by Frank Heikens, Thanatos, Lennart Regebro, bmargulies, John Saunders Dec 28 '10 at 3:10

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

1 Answer

up vote 3 down vote accepted

The differences isn't in suitability for SAAS, but in principles and attitude (and how many users they have).

I'd recommend that you try at least Django and Pyramid and see which one you like best.

link|improve this answer
thanks for your answer. i am already learning about django but what i have seen is that django does not support multiple database and somewhere i feel that django is not capable to provide SaaS solution because due to its limitation. – fear_matrix Dec 27 '10 at 8:09
2  
A 'SaaS' solution is just another business-buzzword for a web page that does more than show flat web pages. Django is a web application framework, and if that can't provide an SaaS solution then nothing can. The limitation here is yours, not Djangos. Would you say the same about RoR, Pylons, Zope? You can offer the .Net application as SaaS just by not letting people run it on their company machines. – Spacedman Dec 27 '10 at 8:34
@user280100: Multiple database connections can be handy, but is certainly not a requirement for SaaS. But if you require more flexibility than Django gives you out of the box, I'd recommend Pyramid. – Lennart Regebro Dec 27 '10 at 8:35
What i am really looking in a framework is to support subscription based, multi-user account and custom domain out of the box. do you happen to have a guide on how can this be achieved in a python framework – fear_matrix Dec 27 '10 at 13:47
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.