Metadata-Version: 1.1
Name: doitlive
Version: 1.0
Summary: Because sometimes you need to do it live.
Home-page: https://github.com/sloria/doitlive
Author: Steven Loria
Author-email: sloria1@gmail.com
License: Copyright 2014 Steven Loria

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
Description: ========
        doitlive
        ========
        
        .. image:: https://travis-ci.org/sloria/doitlive.png?branch=master
          :target: https://travis-ci.org/sloria/doitlive
        
        
        `doitlive` is a tool for live presentations in the terminal. It reads a file of shell commands and replays the commands in a fake terminal session as you type random characters.
        
        
        Get it now
        ----------
        
        .. code-block:: bash
        
            $ pip install doitlive
        
        Requires Python >= 2.7 or >= 3.3 with pip.
        
        Usage
        -----
        
        1. Create a file called ``session.sh``. Fill it with bash commands.
        2. Run ``doitlive session.sh``
        
        .. code-block:: bash
        
            $ doitlive session.sh
        
        
        3. Type like a madman.
        
        
        For more options, run:
        
        .. code-block:: bash
        
            $ doitlive --help
        
        
        More at http://doitlive.rtfd.org
        --------------------------------
        
        
        Kudos
        -----
        
        - Idea came from Jordi Hermoso's `"Revsets" talk <https://www.youtube.com/watch?list=PLLj6w0Thbv02lEXIDVO46kotA_tv_8_us&feature=player_detailpage&v=NSLvERZQSok#t=978>`_  at PyCon 2014.
        - Armin Ronacher's `click <http://click.pocoo.org/>`_ library  made this quick to implement.
        - Themes inspired by Sorin Ionescu's `prezto <https://github.com/sorin-ionescu/prezto>`_ zsh themes.
        
        
        License
        -------
        
        MIT licensed. See the bundled `LICENSE <https://github.com/sloria/doitlive/blob/master/LICENSE>`_ file for more details.
        
        
        Changelog
        ---------
        
        1.0 (unreleased)
        ****************
        
        - Added themes!
        - Prompt variables can have ANSI colors and styles.
        - ``{hostname}`` can be included in prompt.
        - ``{git_branch}`` can be included in prompt.
        - Prompt variable``{{full_cwd}}`` renamed to ``{{cwd}}``.
        - Prompt variable ``{cwd}`` renamed to ``{dir}``.
        - Short option for `--speed` is now ``-s``.
        - Short option for ``--shell`` is now ``-S``.
        - Changed default prompt.
        - ``run`` and ``magictype`` receive prompt_template instead of a prompt function.
        - Remove unnecessary ``PromptState`` class.
        
        0.2.0 (2014-06-16)
        ******************
        
        - Add "speed" config option.
        - Fix short option for "--shell".
        - Custom prompts are colored.
        - Remove unnecessary --check-output option, which was only used for testing.
        - Fix bug where cwd would not update in custom prompts.
        
        0.1.0 (2014-06-15)
        ******************
        
        - Initial release.
        
Keywords: doitlive cli live coding presentations shell
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Environment :: Console
