Hi I've been unable to access ArcGIS Pro metadata with Python and was wondering if anyone could help. I've been trying to use the documentation's (https://pro.arcgis.com/en/pro-app/latest/arcpy/metadata/metadata-class.htm) last example screenshotted below but when I run item_md.title with my item's metadata object, it outputs None.

To test, this is what I outputted:
print(item_metadata) # prints <arcpy.metadata.Metadata object at [address]>
print(item_metadata.title) # prints None
print(type(item_metadata.title)) # prints <class 'NoneType'>
print(item_metadata.description) # prints None
print(type(item_metadata.description)) # prints <class 'NoneType'>
I found some similar forum posts from 2019 and 2020 without solutions but I was hoping that there'd be some updates by now. My arcgispro and arcpy python packages are both version 2.7.

Thank you!