John
John

Reputation: 11

GUI for the Linux and Windows platforms - Python CRUD app

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

Upvotes: 1

Views: 1934

Answers (3)

Dave Kirby
Dave Kirby

Reputation: 26552

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

Upvotes: 1

iondiode
iondiode

Reputation: 650

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 :)

Upvotes: 0

duffymo
duffymo

Reputation: 308763

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

Upvotes: 1

Related Questions