First, thanks for this lib, so useful for me and my team !
We recently identify a small issue with the get_view_data_dataframe that raised a tokenizing data error.
After a quick investigation we noticed that it was necessary to explicitly specify the separator:
view_df = pd.read_csv(StringIO(view_data.text), sep=";")
It would be very ulseful to add an additional argument in the get_view_data_dataframe method to specify the separator.
Hey @Ventrilok great feedback, thanks! Go ahead and run pip install -U tableau-api-lib and the library will now support the user-defined sep param for that function.
Hello,
First, thanks for this lib, so useful for me and my team !
We recently identify a small issue with the get_view_data_dataframe that raised a tokenizing data error. After a quick investigation we noticed that it was necessary to explicitly specify the separator:
view_df = pd.read_csv(StringIO(view_data.text), sep=";")
It would be very ulseful to add an additional argument in the get_view_data_dataframe method to specify the separator.
Thanks again for this great lib!