1

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

2 Answers 2

2

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.

Sign up to request clarification or add additional context in comments.

1 Comment

+1: CRUD is free with Django. Create the model and you're done.
0

"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/

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.