athena-python-pptx 0.1.45__tar.gz → 0.1.46__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {athena_python_pptx-0.1.45 → athena_python_pptx-0.1.46}/PKG-INFO +1 -1
- {athena_python_pptx-0.1.45 → athena_python_pptx-0.1.46}/pptx/__init__.py +1 -1
- {athena_python_pptx-0.1.45 → athena_python_pptx-0.1.46}/pptx/client.py +1 -1
- {athena_python_pptx-0.1.45 → athena_python_pptx-0.1.46}/pptx/presentation.py +1 -1
- {athena_python_pptx-0.1.45 → athena_python_pptx-0.1.46}/pyproject.toml +1 -1
- {athena_python_pptx-0.1.45 → athena_python_pptx-0.1.46}/.gitignore +0 -0
- {athena_python_pptx-0.1.45 → athena_python_pptx-0.1.46}/CHANGELOG.md +0 -0
- {athena_python_pptx-0.1.45 → athena_python_pptx-0.1.46}/DEV-GUIDE.md +0 -0
- {athena_python_pptx-0.1.45 → athena_python_pptx-0.1.46}/PUBLISHING.md +0 -0
- {athena_python_pptx-0.1.45 → athena_python_pptx-0.1.46}/README.md +0 -0
- {athena_python_pptx-0.1.45 → athena_python_pptx-0.1.46}/docs/athena-api.json +0 -0
- {athena_python_pptx-0.1.45 → athena_python_pptx-0.1.46}/docs/athena-api.md +0 -0
- {athena_python_pptx-0.1.45 → athena_python_pptx-0.1.46}/pptx/batching.py +0 -0
- {athena_python_pptx-0.1.45 → athena_python_pptx-0.1.46}/pptx/chart/__init__.py +0 -0
- {athena_python_pptx-0.1.45 → athena_python_pptx-0.1.46}/pptx/chart/data.py +0 -0
- {athena_python_pptx-0.1.45 → athena_python_pptx-0.1.46}/pptx/commands.py +0 -0
- {athena_python_pptx-0.1.45 → athena_python_pptx-0.1.46}/pptx/decorators.py +0 -0
- {athena_python_pptx-0.1.45 → athena_python_pptx-0.1.46}/pptx/dml/__init__.py +0 -0
- {athena_python_pptx-0.1.45 → athena_python_pptx-0.1.46}/pptx/dml/color.py +0 -0
- {athena_python_pptx-0.1.45 → athena_python_pptx-0.1.46}/pptx/docgen.py +0 -0
- {athena_python_pptx-0.1.45 → athena_python_pptx-0.1.46}/pptx/enum/__init__.py +0 -0
- {athena_python_pptx-0.1.45 → athena_python_pptx-0.1.46}/pptx/enum/action.py +0 -0
- {athena_python_pptx-0.1.45 → athena_python_pptx-0.1.46}/pptx/enum/chart.py +0 -0
- {athena_python_pptx-0.1.45 → athena_python_pptx-0.1.46}/pptx/enum/dml.py +0 -0
- {athena_python_pptx-0.1.45 → athena_python_pptx-0.1.46}/pptx/enum/shapes.py +0 -0
- {athena_python_pptx-0.1.45 → athena_python_pptx-0.1.46}/pptx/enum/text.py +0 -0
- {athena_python_pptx-0.1.45 → athena_python_pptx-0.1.46}/pptx/errors.py +0 -0
- {athena_python_pptx-0.1.45 → athena_python_pptx-0.1.46}/pptx/shapes.py +0 -0
- {athena_python_pptx-0.1.45 → athena_python_pptx-0.1.46}/pptx/slides.py +0 -0
- {athena_python_pptx-0.1.45 → athena_python_pptx-0.1.46}/pptx/text.py +0 -0
- {athena_python_pptx-0.1.45 → athena_python_pptx-0.1.46}/pptx/typing.py +0 -0
- {athena_python_pptx-0.1.45 → athena_python_pptx-0.1.46}/pptx/units.py +0 -0
- {athena_python_pptx-0.1.45 → athena_python_pptx-0.1.46}/pptx/util.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: athena-python-pptx
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.46
|
|
4
4
|
Summary: Drop-in replacement for python-pptx that connects to PPTX Studio for real-time collaboration
|
|
5
5
|
Project-URL: Homepage, https://github.com/pptx-studio/python-sdk
|
|
6
6
|
Project-URL: Documentation, https://docs.pptx-studio.com/sdk/python
|
|
@@ -491,7 +491,7 @@ class Client:
|
|
|
491
491
|
return DeckSnapshot(
|
|
492
492
|
deck_id=data["deckId"],
|
|
493
493
|
name=data.get("name", "Untitled"),
|
|
494
|
-
slide_width_emu=data.get("slideWidthEmu",
|
|
494
|
+
slide_width_emu=data.get("slideWidthEmu", 12192000),
|
|
495
495
|
slide_height_emu=data.get("slideHeightEmu", 6858000),
|
|
496
496
|
slide_count=data.get("slideCount", len(slides)),
|
|
497
497
|
slides=slides,
|
|
@@ -399,7 +399,7 @@ class Presentation:
|
|
|
399
399
|
"""Width of slides in EMU."""
|
|
400
400
|
if self._snapshot:
|
|
401
401
|
return Emu(self._snapshot.slide_width_emu)
|
|
402
|
-
return Emu(
|
|
402
|
+
return Emu(12192000) # Default 13.333 inches (widescreen 16:9)
|
|
403
403
|
|
|
404
404
|
@property
|
|
405
405
|
def slide_height(self) -> Emu:
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "athena-python-pptx"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.46"
|
|
8
8
|
description = "Drop-in replacement for python-pptx that connects to PPTX Studio for real-time collaboration"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = "MIT"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|