user271916
user271916

Reputation: 81

Creation of simple CRUD website using Python which framework?

I need to create a simple python website showing customer by salesman and sales by customer. No update of data at all at this time. Which framework might be best. I am not a web guru by any means can read HTML, and Understand CSS. Data is in MySQL. This is a quick and dirty.

Thanks

Upvotes: 1

Views: 2312

Answers (2)

Adam
Adam

Reputation: 2180

Probably Django is your best bet as it has a simple ORM and an automatic admin interface which might prove useful. You might be able to simple "switch off" the ability to update records in the admin interface and just use that.

Upvotes: 2

Bob
Bob

Reputation: 3351

"Best" is really an opinion question. My personal preference is for Django. If you already have a database, you can auto-generate models for the data, assuming all your tables have primary keys and aren't too "weird". The admin application will quickly give you the ability to view and modify all of your data.

http://www.djangoproject.com/

Upvotes: 0

Related Questions