folder.get_download_stream I/O operation on closed file

akmalh_09
Level 2
folder.get_download_stream I/O operation on closed file

Hi experts,

Dataiku prompts this error 

ValueError: I/O operation on closed file.

when I tried to execute the script below:

with folder.get_download_stream(path_csv) as f:
      data = pd.read_csv(f, encoding='latin-1') 

The reason I put that encoding is due to the utf-8 error if encoding is not specified (

'utf-8' codec can't decode byte 0xe1 in position 16: invalid continuation byte

).

Any idea how I can solve this?


Operating system used: Windows 10

3 Replies
pmasiphelps
Dataiker

Hi,

 

Try encoding= 'ISO-8859-1'

 

Best,

Pat

0 Kudos

I have the same problem and it doesn't work :c

0 Kudos
pafj
Level 3

I have the same issue

0 Kudos