├── .github └── workflows │ ├── test-dep.yml │ ├── test-install.yml │ └── test-py.yml ├── .gitignore ├── LICENSE.txt ├── NEWS.rst ├── README.rst ├── gtabview ├── __init__.py ├── compat.py ├── dataio.py ├── models.py ├── qtpy.py └── viewer.py ├── gtabview_cli ├── __init__.py └── gtabview.py ├── sample ├── data_ohlcv.csv ├── excel.xls ├── multiindex_H2_I4.csv ├── pandas-example.py ├── test_latin-1.csv └── unicode-example-utf8.txt ├── setup.py └── tests ├── __init__.py ├── data ├── empty-line-1.txt ├── empty-line-2.txt ├── hash-headers.txt ├── not-xls.xls ├── simple.csv └── simple.xls ├── test_dataio.py ├── test_models.py └── test_view.py /.github/workflows/test-dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabViewer/gtabview/HEAD/.github/workflows/test-dep.yml -------------------------------------------------------------------------------- /.github/workflows/test-install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabViewer/gtabview/HEAD/.github/workflows/test-install.yml -------------------------------------------------------------------------------- /.github/workflows/test-py.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabViewer/gtabview/HEAD/.github/workflows/test-py.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabViewer/gtabview/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabViewer/gtabview/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NEWS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabViewer/gtabview/HEAD/NEWS.rst -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabViewer/gtabview/HEAD/README.rst -------------------------------------------------------------------------------- /gtabview/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabViewer/gtabview/HEAD/gtabview/__init__.py -------------------------------------------------------------------------------- /gtabview/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabViewer/gtabview/HEAD/gtabview/compat.py -------------------------------------------------------------------------------- /gtabview/dataio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabViewer/gtabview/HEAD/gtabview/dataio.py -------------------------------------------------------------------------------- /gtabview/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabViewer/gtabview/HEAD/gtabview/models.py -------------------------------------------------------------------------------- /gtabview/qtpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabViewer/gtabview/HEAD/gtabview/qtpy.py -------------------------------------------------------------------------------- /gtabview/viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabViewer/gtabview/HEAD/gtabview/viewer.py -------------------------------------------------------------------------------- /gtabview_cli/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.10.1' 2 | -------------------------------------------------------------------------------- /gtabview_cli/gtabview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabViewer/gtabview/HEAD/gtabview_cli/gtabview.py -------------------------------------------------------------------------------- /sample/data_ohlcv.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabViewer/gtabview/HEAD/sample/data_ohlcv.csv -------------------------------------------------------------------------------- /sample/excel.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabViewer/gtabview/HEAD/sample/excel.xls -------------------------------------------------------------------------------- /sample/multiindex_H2_I4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabViewer/gtabview/HEAD/sample/multiindex_H2_I4.csv -------------------------------------------------------------------------------- /sample/pandas-example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabViewer/gtabview/HEAD/sample/pandas-example.py -------------------------------------------------------------------------------- /sample/test_latin-1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabViewer/gtabview/HEAD/sample/test_latin-1.csv -------------------------------------------------------------------------------- /sample/unicode-example-utf8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabViewer/gtabview/HEAD/sample/unicode-example-utf8.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabViewer/gtabview/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabViewer/gtabview/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/data/empty-line-1.txt: -------------------------------------------------------------------------------- 1 | a b c 2 | 3 | 1 2 3 4 | -------------------------------------------------------------------------------- /tests/data/empty-line-2.txt: -------------------------------------------------------------------------------- 1 | a,b,c 2 | ,, 3 | 1,2,3 4 | -------------------------------------------------------------------------------- /tests/data/hash-headers.txt: -------------------------------------------------------------------------------- 1 | #a b c 2 | 1 2 3 3 | -------------------------------------------------------------------------------- /tests/data/not-xls.xls: -------------------------------------------------------------------------------- 1 | a,b,c 2 | 1,2,3 3 | 4,5,6 4 | -------------------------------------------------------------------------------- /tests/data/simple.csv: -------------------------------------------------------------------------------- 1 | a,b,c 2 | 1,2,3 3 | 4,5,6 4 | -------------------------------------------------------------------------------- /tests/data/simple.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabViewer/gtabview/HEAD/tests/data/simple.xls -------------------------------------------------------------------------------- /tests/test_dataio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabViewer/gtabview/HEAD/tests/test_dataio.py -------------------------------------------------------------------------------- /tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabViewer/gtabview/HEAD/tests/test_models.py -------------------------------------------------------------------------------- /tests/test_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabViewer/gtabview/HEAD/tests/test_view.py --------------------------------------------------------------------------------