Reputation: 21
We (there are 2 of us) are new to web application development and are trying to develop a web based application product targeted at medium sized businesses.
The following is a basic flow of the work flow of the application:
We have decided to use PostgreSQL as our database.
We did some research on the web to find a suitable language to build our application. We are thinking about using Python as we have got some Python experience already.
However we couldn’t decide on the python web frameworks. Are there any serious drawbacks in using a 3rd party web framework for a project like ours?
We welcome suggestions about other languages/framework that would best suit this scenario.
This is our first post and if you need more details, do let us know.
Upvotes: 2
Views: 1255
Reputation: 4447
Django is awesome.
It is really easy to extend and is very well documented. I highly recommend you check it out.
Upvotes: 1
Reputation: 6182
To answer your first question, yes you absolutely should use a 3rd party web framework. There's no use in reinventing the wheel.
The two Python web frameworks that I am familiar with are Pylons and Django. This question covers the pros and cons for using either. Based on your description I would recommend Django.
Upvotes: 3