Every time I try to upload a .xlsx or .cvs file and it gives an error and the following message. It appears that we continue to experience technical difficulties accessing and analyzing the files you have attached. These technical issues are beyond my control and capabilities to resolve.
This is the python code for the attempt.
Attempt to read the Excel files provided for analysis
file_paths = [
‘/mnt/data/_custom-kitchen-cabinets-Dallas__bulk_us_2024-04-04_20-33-30.xlsx’,
‘/mnt/data/_electrical-services-Dallas__bulk_us_2024-04-04_20-19-30.xlsx’,
‘/mnt/data/_home-remodeling-Dallas__bulk_us_2024-04-04_20-31-50.xlsx’,
‘/mnt/data/_plumbing-services-Dallas__bulk_us_2024-04-04_20-26-34.xlsx’
]
Create a dictionary to hold the DataFrames
dfs = {}
Try loading each file into a DataFrame and adding to the dictionary
for file_path in file_paths:
try:
dfs[file_path] = pd.read_excel(file_path)
except Exception as e:
dfs[file_path] = e
dfs
Is anyone else having this problem, because I haven’t been able to load any files for about 3 days now.