How to read psd Photoshop file's metadata field values into Python?

404 Views Asked by At

How can I read a Photoshop psd file's metadata fields such as: Description, Document Title and Keywords into Python?

Thank You.

1

There are 1 best solutions below

1
On

I think you are looking for psd-tools3 1.9.0. psd-tools3, it is a package for reading Adobe Photoshop PSD files as described in specification to Python data structures.

You can find the documentation here, it's quite easy to use to be honest. You can just pip install the package with: pip install psd-tools3

Let me know if this helps :)