Get LOD sections in python?

Hello,

I’m trying to find the LOD data from a Skeletal Mesh through python.

I am using the following code to find precision UVs:

for i in sk.get_editor_property("lod_info"):
    print i.get_editor_property("build_settings").get_editor_property("use_full_precision_u_vs")

Is there a way for me to get the info from the sections from LOD 0 which show the materials? I want to get the “Cast Shadows” and “Recompute Tangents” checkboxes.

Thanks!