If you are using results e.g. S3Result, how do you...
# ask-community
x
If you are using results e.g. S3Result, how do you debug the content of the generated files without actually running the flow that is using them?
n
Somewhat guessing here since I haven’t tried S3Result myself yet but I think the result is serialized with cloudpickle as default so you should be able to read the contents by doing
cloudpickle.loads(content_loaded_from_file)
🙌 1