Skip to content

getProperties

Return properties for an asset.

getProperties(node, source="all", output="json", filepath=None)

  • node (str)
  • source (str, default: “all”)
  • output (str): json (default), df, raw, file
  • filepath (str | None)
  • node: Asset code to fetch properties for.
  • source: all or a specific source name.
  • output: Output format selector.
  • filepath: Output file path used when output="file".
properties = menu.getProperties("System_01", source="all")
properties = menu.getProperties("System_01", source="graphapi")
properties_df = menu.getProperties("System_01", source="all", output="df")