How can I read a Photoshop psd file's metadata fields such as: Description, Document Title and Keywords into Python?
Thank You.
How can I read a Photoshop psd file's metadata fields such as: Description, Document Title and Keywords into Python?
Thank You.
Copyright © 2021 Jogjafile Inc.
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 :)