I am trying to download files from the mainframe server based on certain criteria. Below is the code snippet:
myzftp = zosftplib.Zftp(mainframe_address,username,password)
myzftp.download_text(source_dataset, local_filename)
Now, I tried this with almost 7 files, and all of them are getting downloaded correctly, except 1, for which I am getting the exception: got more than 8192 bytes.
How to resolve this?