Skip to content

Instantly share code, notes, and snippets.

@siarebus
siarebus / data_model2kivy.py
Created April 18, 2022 16:18 — forked from jsexauer/data_model2kivy.py
Kivy Data Model Bridge -- A set of classes to allow the effortless bridging of of a data model written in standard python and a UI which is meant to automatically update to display the results of the data model
"""
Allow the simple creation of kivy UIs for arbitrary python object. The UI
will automatically update as the underlying python model changes, provided any
function on the UI side that changes the underlying data model use the
"update" decorator.
"""
import kivy
kivy.require('1.7.0')
@siarebus
siarebus / DataFrameGUI.py
Created April 18, 2022 16:18 — forked from jsexauer/DataFrameGUI.py
A sophisticated GUI to interact with DataFrame objects
"""
DataFrameTable
==============
Quick and Dirty Qt app to view pandas DataFrames. Includes sorting and
filterting.
Based on qtpandas in pandas sandbox module, by Jev Kuznetsov
Usage: