Reputation: 11
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
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
Reputation: 650
hmm, probably more than what you need.
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