You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am aware of the possibility to override the excel.set_xl_array_conversion with something like excel.set_xl_array_conversion(convert_to_list). But is there a way to leave the default as DataFrame, and just occasionally get a list, or is the idea to convert the DataFrame back to a list to do this?
The text was updated successfully, but these errors were encountered:
The xl() function signature supports **kwargs, so you can pass additional parameters which are then pass to the conversion function, i.e. xl("A1:B5", headers=True, to_list=True)
Then check that to_list parameter as part of our convert_to_list and implement your logic accordingly.
I am aware of the possibility to override the
excel.set_xl_array_conversion
with something likeexcel.set_xl_array_conversion(convert_to_list)
. But is there a way to leave the default as DataFrame, and just occasionally get a list, or is the idea to convert the DataFrame back to a list to do this?The text was updated successfully, but these errors were encountered: