tags:

views:

119

answers:

4

Hello, i'm looking for a basic CRUD (create-read-update-delete) app in Python, with some line-by-line display grid to browse through a file's records and select individual records from there. It probably already exists but i couldn't find anything yet. Thanks

A: 

http://postneo.com/2005/08/17/django-generic-views-crud

http://www.slideshare.net/mcantelon/basic-crud-in-django

how about something like that?

Espen Schulstad
Thanks a lot Espen, the Django CRUD looks very interesting.In my case however it seems to be too much - something reallybasic would be enough for what i'd need. Anyway, i'll take acloser look at your recommendation.
John
Espen, thanks again, the Basic Crud In Django by Mike Canteloncomes very close to what i'm looking for, although in Django.
John
+1  A: 

Isn't Django all about web-based CRUD applications for Python?

duffymo
You're probably right, as far as i know it's a complete frameworkfor web-based apps. Possibly too big for me in this case.
John
Instead of developing web based applications use one and access models via the shell using the django framework?
Dean
@Dean: Sounds like a good idea, but implies learning Django first?
John
A: 

hmm, probably more than what you need.

http://dabodev.com/

If you are more interested in lower level stuff, wxPython wiki has a lot of info, a google reveals

http://wiki.wxpython.org/DataAwareControlsMixin

but this might not be enough for you :)

iondiode
iondiode, thank you, i'll take a look at your recommendations.
John
+1  A: 

Maybe Camelot is what you need. It is a RAD framework for creating desktop database apps using Python, SQLAlchemy and Qt.

Dave Kirby
@Dave: Camelot looks very interesting indeed, thanks a lot.
John