Generate PPTX slides and presentations from HTML markup.
Project description
Installing
pip install newsworthy_slides
Using
This library has one main function: slides_from_xml()
which lets you generate and slides from a custom HTML structure (described below).
Basic usage:
from newsworthy_slides import slides_from_xml
slides_xml = """
<slide layout="Title and content">
<placeholder type="text">
Hello world!
</placeholder>
</slide>
"""
# Generate to new, empty presentation
pres = slides_from_xml(slides_xml)
# Generate to existing presentation
pres = slides_from_xml(slides_xml, "path/to/my_base_slides.pptx")
# pres is an instance of pptx.Presentation and can be saved easily:
pres.save('my_presentation.pptx')
The XML structure
Slides
A slide must always have a layout
attribute referring to the name of a slide layout.
<slide layout="Title and content">
</slide>
A slide may have position
attribute which defines where in the presentation the slide is to be added.
A slide consists of a number of placeholders.
<slide layout="Title and content">
<placeholder type="text">
Hello world!
</placeholder>
</slide>
Each placeholder must have a type
attribute, which can be either text
, image
, table
. The type
attribute defines how the content of the tag is to be interpreted.
The placeholders may also have a name
attribute. This attribute should refer to a placeholder name in the slide layout.
<slide layout="Title and content">
<placeholder type="text" name="Text Placeholder 1">Hello</placeholder>
<placeholder type="text" name="Text Placeholder 2">World!</placeholder>
</slide>
If no placeholder name is defined the placeholders will be positioned in order.
<slide layout="Title and content">
<placeholder type="text">First placeholder</placeholder>
<placeholder type="text">Second placeholder</placeholder>
</slide>
The different placeholders types are defined below.
Text placeholders
Text placeholders may contain plain text or basic html. <p>
and <li>
tags are interpreted as paragraphs.
<placeholder type="text">
Hello world!
</placeholder>
<placeholder type="text">
<p>Hello Earth!</p>
<p>Hello Mars!</p>
</placeholder>
<placeholder type="text" auto-size="text-to-fit-shape">
<li>Hello Earth!</li>
<li>Hello Mars!</li>
<li>Hello Jupiter!</li>
<li>Hello Saturn!</li>
<li>Hello Uranus!</li>
</placeholder>
<strong>
, <i>
/<em> and <a>
tags may be used for inline formating and linking.
The auto-size
attribute may be set to autosize either the text (text-to-fit-shape
) or the shape (shape-to-fit-text
).
<placeholder type="text">
Hello <strong>world</strong>. Considering a <a href="http://outer.space">Mars</a>?
</placeholder>
Image placeholders
An image placeholder recognizes <img>
tags and picks up the path (or url) to the image from the src
attribute.
<placeholder type="image" vertical-alignment="top>
<img src="path/to/image.png">
</placeholder>
Use attributes vertical-alignment
(or va
) and horizontal-alignment
(or ha
) for positioning.
Note that the placeholder explicitly has to be either a picture or an object placeholder. This has to be set manually in Powerpoint. At the moment of writing Google Slides does not support picture placeholders (neither does Libre Office).
Table placeholders
A table placeholder should contain an html table. All <tr>
tags are parsed as rows. <td>
and <th>
tags are parsed as cells. The cells may contain same basic text formatting as paragraphs (<strong> for bold, <i>
for italic etc).
Cells with class="value"
are interpreted as numbers and right-aligned.
<thead> and <tbody>
may be present, but does not bring any meaning. <caption>
is _not_ parsed.
<placeholder type="table">
<table>
<tr>
<td>Country</td>
<td>Happiness</td>
</tr>
<tr>
<td>Finland</td>
<td class="value">9.5</td>
</tr>
<tr>
<td>Sweden</td>
<td class="value">8.5</td>
</tr>
</table>
</placeholder>
Notes
A slide may contain <notes>
tag containing slide notes. The content will be parsed as text just as regular text placeholders.
<notes>
<li>Here is an important thing to keep in mind!</<li>
</notes>
Presentation metadata
Presentation level metadata such as title, author and comments may be defined as attributes of a <presentation>
tag. Available properties equals the core properties of the pptx library.
<presentation title="My Report" author="John Smith" created="2020-01-01">
</presentation>
Developing
To run tests:
python3 -m pytest test
Deployment
To deploy a new version to PyPi:
Update Changelog below.
Update
version.py
Build:
python3 setup.py sdist bdist_wheel
Upload:
python3 -m twine upload dist/newsworthy_slides-X.Y.X*
…assuming you have Twine installed (pip install twine) and configured.
Changelog
1.6.0
New feature: Notes
1.5.0
Enable alignment of images.
1.4.0
Enable autosizing of text.
1.3.0
Enable insertion of image to general purpose object placeholders.
1.2.0
Adds ability to parse presentation level metadata.
1.1.1
Bug fix: Handle negative rotation.
1.1.0
Makes it possible to rotate images.
1.0.2
Fixes ordering bug in table
1.0.1
Add custom exception if image is missing
1.0.0
First version
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file newsworthy_slides-1.6.0.tar.gz
.
File metadata
- Download URL: newsworthy_slides-1.6.0.tar.gz
- Upload date:
- Size: 15.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.25.1 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.6.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e6030c45478dd23dcc228140fa2bec880af040c75c3a217dffae7225b5f425c5 |
|
MD5 | 10b38d6ef7e69f166e0285760b790f55 |
|
BLAKE2b-256 | bed4662f9d50443f26940dfddbe22faf912cd49a15a5790c5f2f6ea4e752a34a |
File details
Details for the file newsworthy_slides-1.6.0-py3-none-any.whl
.
File metadata
- Download URL: newsworthy_slides-1.6.0-py3-none-any.whl
- Upload date:
- Size: 12.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.25.1 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.6.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e6723bde70b474d586184ef54a2bafa25f76cb0104d1d61ac92dc209b0bf0d66 |
|
MD5 | ee3683746166250bc51e857c0c2057f3 |
|
BLAKE2b-256 | 423db79fa5e63dc6ba90ffc52b3de03fbbfc34993b01f9614cebf20762105c81 |