Vidhi_Khaitan
Databricks Employee
Databricks Employee

Hi @himoshi Good Day!
1. Could you use print() instead of display()?
2.If you're printing a large YAML or dictionary object directly (e.g. print(parsed_yaml) or display(parsed_yaml)),
try:

import json
print(json.dumps(parsed_yaml, indent=2)[:500]) # Print only first 500 characters
3. Could you also try saving the output to a temp file location and reading it back to see if you are actually getting any results?