Not sure what you mean, but all DICOM information is contained in data elements - tag and value. The pixel data is available in a pydicom dataset `ds` using `ds.pixel_array` (as a numpy array) or `ds.PixelData` (raw bytes).
You could delete the pixel data if you don't need it, by using `del ds.PixelData`.