hoverinc / tableau-utilities

A module and CLI Utility for managing Tableau objects, locally, and in Tableau Online.
MIT License
4 stars 1 forks source link

Release for v2.0.0 #53

Closed JustinGrilli closed 1 year ago

JustinGrilli commented 1 year ago

Summary

I wanted to re-imagine the tableau-utilities package.

I want to add much more functionality to the TableauServer class - and have the outputs be clearly defined as dataclass objects.

I want to remove the concept of tds from the end user - they should just think of the file as a Datasource. They should not need to concern themselves with extracting and repackaging a tdsx file - to them, they are just making updates, and saving those changes.

The TDS class would now be Datasource. And in the future, we can add Workbook. Rather than tds.add('column', a='bunch', of='args') you should now be able to datasource.columns.add(Column). This way all of the attributes are clearly defined in dataclasses, for the objects we would like to add/update/delete.

Changes

Development Changes

Notes to reviewer

Since this is a major refactor/change, I think it is worthy of being considered a major release to 2.0.0.

Tests