Hi There! I'm working on a script that is pulling a file in the file cabinet. I'm getting an error though that is saying that the file is bigger than 10mb so I'm not able to use file.load. does anyone know of a workaround for this?
e
ehcanadian
07/13/2021, 4:55 PM
If your file is text, you can iterate over the lines using
fileObj.lines.iterator()
d
dynamicl
07/13/2021, 7:51 PM
Not sure if it will help your use case but have you looked at the compress module?
n
ngill4492
07/14/2021, 7:13 PM
oh I have not!
ngill4492
07/14/2021, 7:13 PM
I'll take a look into it!
ngill4492
07/14/2021, 7:14 PM
@ehcanadian So under 10mb it works but over 10mb it doesn't even allow me to use file.load at all