Metadata-Version: 1.0
Name: pyspinner
Version: 0.1.0
Summary: A simple spin-syntax parser for Python
Home-page: http://github.com/omederos/pyspinner
Author: Oscar Mederos
Author-email: omederos@gmail.com
License: MIT License
Description: pyspinner
        =========
        
        .. image:: https://badge.fury.io/py/pyspinner.png
            :target: https://pypi.python.org/pypi/pyspinner
        
        pyspinner is simple library for parsing text that uses spin-syntax.
        
        Installation
        ------------
        
        To install pyspinner, simply:
        
        .. code-block:: pycon
        
            $ pip install pyspinner
        
        or download the source code and do:
        
        .. code-block:: pycon
        
            $ python setup.py install
        
        How to use it
        -------------
        
        .. code-block:: bash
        
            >>> import spinning
            >>> spinning.unique('The {quick|fast} {brown|gray|red} fox jumped over the lazy dog.')      
            'The quick gray fox jumped over the lazy dog.'
        
        Running tests
        -------------
        
        .. code-block:: bash
        
            $ python spinning-tests.py
            ....
            ----------------------------------------------------------------------
            Ran 2 tests in 0.000s
            
            OK
        
        Features
        --------
        
        - Supports nested syntax.
        - Supports custom opening, closing and separator characters by using the ``override_params`` function.
        
        TO-DO
        -----
        
        - Allow optional phrases: ``The quick{ red|} fox...``
        - Allow special characters ``{,|,}`` inside text by escaping them.
        - Write more tests
        
Platform: UNKNOWN
