pypresenter

Presentations from the CommandLine


Keywords
presentation, shell, commandline
License
GPL-3.0
Install
pip install pypresenter==0.2

Documentation

#PyPresenter

##What is It ?

  • It is a commandline presentation tool ( Allows you to present on terminal )
  • Inspired (to an extent derived) from Prysenter

Install

$ git clone https://github.com/neshkatrapati/pypresenter.git
$ cd pypresenter
$ sudo python setup.py install

or

$ pip install pypresenter

or

$ easy_install pypresenter

Usage

$ pypresenter example.pypr
(Right Arrow, Left Arrow : Controls)
( Ctrl + C to exit )

##Features

###XML format to write slides.

<presentation>
<slide>
	<text>
		Hello !
	</text>
</slide>
</presentation>
  • Slide center & Text center
<slide center="true">
       <center>
		<text>
			Hello !
		</text>
	</center>
</slide>

Screen 1

  • Text colors, styles and type writing animation
<slide center="true">
	<center>
		<text>
			<f style="bold" color="red"> Red Text is </f>
			<typewriter> <f color="blue"> Awesome ! </f></typewriter>
		</text>
	</center>
</slide>

Screen 2

  • Use figlet
<slide>
	<heading font="starwars" fg="red" bg="white">
		 Welcome !
	</heading>
</slide>

Screen 3

  • Ascii image rendering using python-aalib
<slide>
	<image width="20" height="20"> image.jpg </image>
</slide>

Screen 4

  • Use os commands in side the slides
<slide>
	<command print="true">
		cowsay "Hello"
	</command>
</slide>

Screen 5