Skip to content

Instantly share code, notes, and snippets.

View Dasc3er's full-sized avatar

Thomas Zilio Dasc3er

  • Italy
  • 13:35 (UTC +02:00)
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]