Concatenate a Property Name with a Prim Path

If you want to concatenate a property name with a Prim path, you can use Sdf.Path.AppendProperty. In this example, given Sdf.Path("/World/MyMesh") in mesh_prim_path, points_attr_path will contain Sdf.Path("/World/MyMesh.points").

from pxr import Sdf

def concat_property_with_prim_path(prim_path: Sdf.Path, prop) -> Sdf.Path:
    prop_path = prim_path.AppendProperty(prop)
    return prop_path

#############
# Full Usage
#############

# e.g., get path to "points" attribute on a mesh prim
from pxr import UsdGeom, Usd

stage: Usd.Stage = Usd.Stage.CreateInMemory()
default_prim: Usd.Prim = UsdGeom.Xform.Define(stage, Sdf.Path("/World")).GetPrim()
stage.SetDefaultPrim(default_prim)
mesh_prim: Usd.Prim = UsdGeom.Xform.Define(stage, Sdf.Path("/World/Mesh")).GetPrim()

prop_path: Sdf.Path = concat_property_with_prim_path(mesh_prim.GetPrimPath(), UsdGeom.Tokens.points) #nothing happend so did it get added?

usda = stage.GetRootLayer().ExportToString()
print(usda)

assert Sdf.Path.IsValidPathString(prop_path.pathString)