v.0.10.3

On 2022.10.25

This version has been deprecated. If used with the current API version it can produce unexpected behaviour or errors.

The package shimoku-api-python is no longer maintained

To get the new version 🚀

pip install --upgrade shimoku-api-python

Fixes

  • Fixed the posting of tables so that it doesn't raise an error when finished.

  • Fixed indicators so that a dictionary can be used when creating an individual indicator, like so:

    primary_total_indicator = {
        'value': principales_all,
        'title': '#Total Principales',
        'description': '#Total de usuarios principales',
        'color': 'warning',
    }
    s.plt.indicator(    
        data=data,    
        menu_path=menu_path,    
        order=1, rows_size=1, cols_size=12,    
        value='value',    
        header='title',    
        footer='description',    
        color='color')

Improvements

  • Now the tables have a "download to csv" button by default. It can be disabled by changing the parameter "downloadable_to_csv" to "True".

  • The dependencies in requirements.txt are installed automatically when installing the SDK, and "shimoku-components-catalog" has been added to the dependencies, so it doesn't need to be updated separately anymore.

Last updated