Metadata-Version: 1.0
Name: pypresenter
Version: 0.1
Summary: Presentations from the CommandLine
Home-page: https://github.com/neshkatrapati/pypresenter
Author: Ganesh Katrapati
Author-email: ganesh@swecha.net
License: GNU GPL V3+
Description: #PyPresenter
        
        
        ##What is It ?
        
        * It is a commandline presentation tool ( Allows you to present on terminal )
        
        ## Install
        
        ``` bash
        $ git clone https://github.com/neshkatrapati/pypresenter.git
        $ cd pypresenter
        $ sudo python setup.py install
        ```
        
        ## Usage
        ``` bash
        $ pypresenter example.pypr
        ( Ctrl + C to exit )
        ```
        
        ##Features
        
        ###XML format to write slides. 
        
        ``` xml
        <slide>
        	<text>
        		Hello !
        	</text>
        </slide>
        ```
        
        * Text colors, styles and type writing animation
        ``` xml
        <slide>
        	<text>
        		<f style="bold" color="red"> Red Text is </f>
        		<typewriter> <f color="blue"> Awesome ! </f></typewriter>
        	</text>
        </slide>
        ```
        * Use figlet 
        ``` xml
        <slide>
        	<heading font="starwars" fg="red" bg="white">
        		 Welcome !
        	</heading>
        </slide>
        ```
        
        * Ascii image rendering using python-aalib
        ``` xml
        <slide>
        	<image width="20" height="20"> image.jpg </image>
        </slide>
        ```
        
        * Use os commands in side the slides
        ``` xml
        <slide>
        	<command print="true">
        		ls -l 
        	</command>
        </slide>
        ```
        
Keywords: presentation shell commandline
Platform: UNKNOWN
