Skip to content

Latest commit

 

History

History
19 lines (17 loc) · 759 Bytes

README.md

File metadata and controls

19 lines (17 loc) · 759 Bytes

Excel graph parser (open-source parser for translation of excel graphs to Plotly figures)

This repository can be installed to show nicely formatted graphs generated by excel documents. Currently only useful for VIKTOR applications.

Installation

Paste the link of this repository in your requirements.txt:

viktor==14.9.0
excel-graph-parser

Contributing

Improvements to the view are very welcome. Please ensure your improvements adhere to the code standards by running black, isort and pylint (with the versions specified in dev-requirements.txt):

python -m black viktor_table_view/;
python -m isort viktor_table_view/;
python -m pylint viktor_table_view/ --rcfile=pyproject.toml;