materials_compendium.utils.Material.get_references

Material.get_references()[source]

Get the references associated with the material.

Returns:

A list of references.

Return type:

list

Example

datum = Datum(References=[“Ref 1”, “Ref 2”]) material = Material(datum) print(material.get_references()) # Output: [“Ref 1”, “Ref 2”]