Instructions

This is a Python object inspector. Information is color-coded: Inspect your own Python object: https://pypi.org/project/tree-inspector {% macro span_segment(kind, short_content, content) -%} {% if short_content %} {{short_content | e}} {% endif %} {%- endmacro %} {% macro li_node(nd) -%}
  • {{ span_segment("name", nd.name, nd.name) }} {{ span_segment("type", nd.short_type, nd.full_type) }} {{ span_segment("value", nd.value, nd.value) }}
  • {%- endmacro %}

    {{ name }}