Metadata-Version: 1.0
Name: prysenter
Version: 1.0
Summary: A minimal, text-only, terminal-only presentation runner.
Home-page: http://git.io/prysenter
Author: Charles Nelson
Author-email: cnelsonsic@gmail.com
License: LICENSE.txt
Description: =========
        Prysenter
        =========
        
        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 <http://pypi.python.org/pypi/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 presentation import Presentation
            slides = ['Intro to Prysenter',
                      'Prysenter presents',
                      'Simple',
                      'Minimal',
                      'Quick',
                      'Thank You.',]
            Presentation(slides=slides).start()
        
        
        Color Example
        -------------
        
        ::
        
            from presentation import Presentation
            slides = ["{f_red}Red Slide",
                      "{f_green}Slide",
                      "{b_white}{f_yellow}{s_bright}What is this, I don't even.{s_reset_all}"]
            Presentation(slides=slides).start()
        
        Timeout Example
        ---------------
        You can make all your slides advance after a presentation-wide timeout:
        
        ::
        
            from presentation import Presentation
            import pechakucha
            slides = ["Pecha",
                      "Kucha",
                      "Who would ever need more",
                      "Than 20 Seconds?"]
            Presentation(slides=slides, timeout=pechakucha.timeout).start()
        
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Education
Classifier: Topic :: Terminals
