MCPcopy Create free account
hub / github.com/scanny/python-pptx / sha1

Method sha1

src/pptx/media.py:94–99  ·  view source on GitHub ↗

The SHA1 hash digest for the binary "file" of this video. Example: `'1be010ea47803b00e140b852765cdf84f491da47'`

(self)

Source from the content-addressed store, hash-verified

92
93 @lazyproperty
94 def sha1(self):
95 """The SHA1 hash digest for the binary "file" of this video.
96
97 Example: `'1be010ea47803b00e140b852765cdf84f491da47'`
98 """
99 return hashlib.sha1(self._blob).hexdigest()
100
101
102SPEAKER_IMAGE_BYTES = base64.b64decode(

Calls

no outgoing calls