v.0.9

On 2022.08.17

triangle-exclamation
triangle-exclamation
circle-info

To get the new version 🎨🖌️

pip install --upgrade shimoku-api-python
pip install --upgrade shimoku-components-catalog
circle-info

This version is a big leap forward adding critical new features to keep giving tools to Python developers to interact with a Data Platform ready to create Data & AI Apps

Fixes

  • Fixed responsiveness of tables

  • Responsiveness of components when the devices are turned solved

Improvements

  • Now s.plt.set_apps_orders() and s.plt.set_sub_path_orders() can get the URL to sort and order paths and subpaths.

Examples:

s.plt.set_apps_orders(apps_order={'test': 1, 'caetsu': 2})
s.plt.set_sub_path_orders(
    paths_order={
        'test/funnel-test': 1,
        'test/tree-test': 2,
    }
)

New

  • Free eCharts a cornerstone feature. The catalog of Shimoku has now all the power of personalization of eCharts! The proposed usage is:

  1. Play in the eCharts console to tune it until you got precissely what you want. Add the data you want to the eCharts console to check out that everything works as you want.

  2. Copy the eCharts console code and paste it into your Python code as a string and use the raw_options as input of s.plt.free_echarts()

4. É Voila!

Note you cannot add eCharts functions such as from https://echarts.apache.org/examples/en/editor.html?c=line-aqiarrow-up-right you must get rid of those for it to work!

You can also build it without copy pasting the data, just passing the rest of the options from eCharts. Use options and data as input of s.plt.free_echarts()

  • Input Form. A game changer! Shimoku users can now introduce further inputs besides the filters and these can be linked to different logics to produce real time outcomes. The Input form allows a rich variety of input components. You can use a rich variety of inputs and combine them passing it to s.plt.input_form()

That results in

  • File IO for Feature Store. Now users can store and retrieve datasets and models in Shimoku as part of our service. Every file is assigned to a business and app.

Example #1 You can store raw binary or string objects and retrieve them (they can be ML models or any other binary object)

Example #2 You can also store pandas dataframes (from any size) and retrieve them easily:

Example #3 You can retrieve binary objects and pandas dataframe by date:

Tricks

Last updated

Was this helpful?