Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-02-2025 02:45 AM
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?
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?