Skip to content

2.0.0

Compare
Choose a tag to compare
@FlipperPA FlipperPA released this 22 Feb 15:40
· 44 commits to main since this release

What's Changed

  • Support was added for column data styles and global date, time, and datetime formats @rptmat57 in #50
    • This is a breaking change for anyone who was using xlsx_date_format_mappings; please update to use column_data_styles
  • Typos were fixed by @runningzyp in #52

column_data_styles example

This new features allows for flexible styling at the column level:

column_data_styles = {
    'distance': {
        'alignment': {
            'horizontal': 'right',
            'vertical': 'top',
        },
        'format': '0.00E+00'
    },
    'created_at': {
        'format': '%d.%m.%Y %H:%M',
    }
}

New Contributors

Full Changelog: 1.0.0...2.0.0