divinorum-webb / tableau-api-lib

An API library that allows developers to call on the methods listed in Tableau's REST API documentation.
MIT License
96 stars 34 forks source link

Replace deprecated df.append() Pandas call with pd.concat #68

Closed kdw2126 closed 2 years ago

kdw2126 commented 2 years ago

Pandas version 1.4 depreciated the df.append() method and pd.concat() is now preferred. This now produces DepreciationWarnings whenever this function is called.

Figured I'd quickly make the change -- happy to accept feedback or close if this is desired behavior.

divinorum-webb commented 2 years ago

Thanks, Kyle! If you see this pop up anywhere else dataframes are using .append(), feel free to push the merge request any time.