Reputation: 117
How can I read a Photoshop psd file's metadata fields such as: Description, Document Title and Keywords into Python?
Thank You.
Upvotes: -2
Views: 461
Reputation: 172
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 :)
Upvotes: 1