Shobin Joyakin
- Total activity 6
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 2
Activity overview
Latest activity by Shobin Joyakin-
Shobin Joyakin commented,
Yes.. Thats what I did. The below code should help you read the excel file. items = client.folder(folder_id=inputfolder).get_items() for item in items: df= pd.read_excel(io.BytesIO...
-
Shobin Joyakin commented,
I found a way out to read Excel files. This worked for me.. pd.read_excel(io.BytesIO(item.content()))
-
Shobin Joyakin commented,
Hi George.. Did you find a way to read Excel file in Box using python script? The solution Guy Huinen shared works only with CSV files.
-
Shobin Joyakin commented,
Hi Neha. Have you found a way to read Excel file in Box? I am also running into the same issue. Hi Alex, Is Box encoding Excel files in a different format? I am able to read text and csv files aft...