Any sqledit/sqlkit users here?

cl at isbd.net cl at isbd.net
Wed Mar 16 12:48:21 EDT 2016


Does anyone here use sqledit/sqlkit?  It's a sqlite database
browser/editor which does most of its work by introspection (at least
I think that's the right name for it).

Thus it's trivially simple to write a gui program to edit data in a
database:-

    #!/usr/bin/python

    from sqlkit.widgets import SqlTable
    from sqlkit.db import proxy

    import gtk

    db = proxy.DbProxy(bind="sqlite:////home/chris/tmp/odinlog.db")

    t = SqlTable('tripLog',    dbproxy=db, order_by='Date' )
    t.reload()

    gtk.main()


(Yes, I know exit/close is missing)

Just run the above (against an existing database) and you get a very
neat looking, editable, grid view.

I was wondering if there are any active users with whom I could share
ideas, the mailing list is quite quiet though there is activity to
move the code to bitbucket and allow more contributions.

I'm just a bit overwhelmed by it at the moment and need some feedback.

-- 
Chris Green
·



More information about the Python-list mailing list