Sign up to take part
Registered users can ask their own questions, contribute to discussions, and be part of the Community!
Added on November 6, 2023 9:07PM
Likes: 0
Replies: 1
I am trying to write a pdf filer to dataiku folder.
usually I can write pdf file in my device with:
with open(outputFile, "wb") as outputStream:
output.write(outputStream)
but it doesnt work withing Dataiku
Also I tried to use this:
with open(os.path.join('Folder Location', "file.pdf")) as outputStream:
output.write(outputStream)
and it gives this error as there is no file that exists there
FileNotFoundError: [Errno 2] No such file or directory:
Operating system used: windows
First issue, Dataiku's dirty little secret: it doesn't actually create the folder in the file system until you put a file in it. Go to your flow and add a dummy file to the folder manually.
Second issue you can't write directly to a Dataiku folder, use either upload_steam or upload_file: