Metadata-Version: 2.4
Name: MUIs
Version: 0.2.0
Summary: My Python package related to creating material ui version of python
Author-email: Prakhar Gandhi <gprakhar0@gmail.com>
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: dash
Requires-Dist: dash-mui-charts

# MUIs


Python package related to creating mui charts

```python
import MUIs 
from MUIs import mui
from pprint import pprint


if __name__ == '__main__': 
    list_of_types = ["line","bar","candlestick","pie","scatter","composite","heatmap","sparkline","livetrading","unknown_type"]
    series_lists = [[1, 4, 2, 5, 7],[1, 2, 2, 5, 7]]
    xAxis_list = [1, 2, 3, 4, 5]
    yAxis_list = [11,22,33,44,55]
    check_which_charts_are_available = True
    charts_app = mui.get_charts(list_of_types,series_lists,xAxis_list,yAxis_list,check_which_charts_are_available)
    mui.run_app(charts_app)

```

