Skip to main content

A minimal, text-only, terminal-only presentation runner.

Project description

Prysenter is an absolutely minimal, text-only, terminal-only presentation runner. It shows a sequence of strings, centered in your terminal.

Installing

Download and run presenter.py for an example of what it looks like.

The python module, colorama, is an optional dependency for colorized output of slides.

Color Mappings

  • f_color maps to colorama.Fore.CODE constant.

  • b_color maps to colorama.Back.CODE constant.

  • s_color maps to colorama.Style.CODE constant.

A code example is in the Usage section below.

Usage

Crank the font size on your terminal, run your presentation.

New Presentations

from prysenter import Prysentation
slides = ['Intro to Prysenter',
          'Prysenter presents',
          'Simple',
          'Minimal',
          'Quick',
          'Thank You.',]
Prysentation(slides=slides).start()

Color Example

from prysenter import Prysentation
slides = ["{f_red}Red Slide",
          "{f_green}Slide",
          "{b_white}{f_yellow}{s_bright}What is this, I don't even.{s_reset_all}"]
Prysentation(slides=slides).start()

Timeout Example

You can make all your slides advance after a presentation-wide timeout:

from prysenter import Prysentation, pechakucha
slides = ["Pecha",
          "Kucha",
          "Who would ever need more",
          "Than 20 Seconds?"]
Prysentation(slides=slides, timeout=pechakucha.timeout).start()

Project details


Release history Release notifications | RSS feed

This version

1.0

Download files

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

Source Distribution

prysenter-1.0.tar.gz (21.5 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