I am attempting to get SOP Class UIDs from pydicom.uid like so:
getattr(pydicom.uid, 'ModalityPerformedProcedureStep')
For the below list, I get this error:
module pydicom.uid has no attribute ModalityPerformedProcedureStep
[
	'UltrasoundMultiFrameImageStorageRetired', 
	'NuclearMedicineImageStorageRetired', 
	'UltrasoundImageStorageRetired', 
	'StandaloneOverlayStorage', 
	'StandaloneCurveStorage', 
	'WaveformStorageTrial', 
	'XRayAngiographicBiPlaneImageStorage', 
	'ModalityPerformedProcedureStep', 
	'StorageCommitmentPushModel'
]
Anything special about these?  I can see them listed in UID_dictionary.  Maybe there is a better way to get the UID by SOP Class name?