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
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file prysenter-1.0.tar.gz.
File metadata
- Download URL: prysenter-1.0.tar.gz
- Upload date:
- Size: 21.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5f0a58e4943b79de5de1c86629bccf0f04cd98076e7eb0b2681713f1f211d9e5
|
|
| MD5 |
7c88587730a4da24e79b527dfb29cf63
|
|
| BLAKE2b-256 |
8f2c8da761cd7f5aeee399d6f59324ef307c73798afb9777650bb1ddb40a595b
|