Skip to content

Instantly share code, notes, and snippets.

View SyperOlao's full-sized avatar
🤡

syper_olao SyperOlao

🤡
View GitHub Profile
@Dasc3er
Dasc3er / pptx-helpers.py
Last active July 14, 2024 03:09
Set of helpers to work with PPTX manipulation using the Python PPTX library
def _object_rels(obj):
try:
rels = obj.rels
# Change required for python-pptx 0.6.22
check_rels_content = [k for k in rels]
if isinstance(check_rels_content.pop(), str):
return [v for k, v in rels.items()]
else:
return [k for k in rels]