TabView - OpenTrading/OpenTrader GitHub Wiki
tabview.py allows you to view a tab-delimited file in a spreadsheet-like display. It was written by:
- Scott Hansen <firecat four one five three at gmail dot com>
- Based on code contributed by A.M. Kuchling <amk at amk dot ca>
It allows us to view tables of values nicely from a command line application like OpenTrader. Because it relies on curses, it is only available under Unix. There is the possibility that some Windows terminal emulators support curses from Python, but we have not explored that.
This is the tabview from the 2015-06-14 mva branch of https://github.com/wavexx/tabview that handles dictionaries and pandas series dataframes and panels. For the discussion, see https://github.com/firecat53/tabview/pull/116
There is a choice of either:
git clone https://github.com/mdbartos/tabview ; cd tabview ; git checkout feat
or:
git clone https://github.com/wavexx/tabview ; cd tabview ; git checkout mva
We will manually keep the one file tabview.py up to date, or you can replace it yourself with a more recent version for http://github.com.
Parent: Components