Skip to main content

A toolkit for generating ProPresenter6 files.

Project description

A toolkit for generating ProPresenter6 files.

Getting started

Install with pip:

$ pip install PP6Generator

Then:

from PP6Generator import Presentation, Slide, Text

t1 = Text()
t1.add_text(['Hello there!'])
t2 = Text()
t2.add_text(['General Kenobi!'])

s1 = Slide()
s1.add_display_element(t)
s2 = Slide()
s2.add_display_element(t)

p = Presentation()
p.add_slides([s1, s2])
p.set_title('Hello')

# Generate a file called Hellop.pro6
p.generate_file()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

PP6Generator-0.1.2.tar.gz (5.3 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page