Metadata-Version: 1.1
Name: snorse
Version: 1.0.0
Summary: Unicode Snowman Morse Code
Home-page: https://github.com/pipermerriam/snorse
Author: Piper Merriam
Author-email: pipermerriam@gmail.com
License: MIT
Description: ===============================
        Snorse
        ===============================
        
        .. image:: https://badge.fury.io/py/snorse.png
            :target: http://badge.fury.io/py/snorse
        
        .. image:: https://travis-ci.org/pipermerriam/snorse.png?branch=master
                :target: https://travis-ci.org/pipermerriam/snorse
        
        .. image:: https://pypip.in/d/snorse/badge.png
                :target: https://pypi.python.org/pypi/snorse
        
        
        Unicode Snowman Morse Code
        
        * Free software: MIT license
        
        
        Install
        -------
        
        .. code-block:: bash
        
            $ pip install snorse
        
        Usage
        -----
        
        Command Line
        
        .. code-block:: bash
        
            $ snorse snowman
            ☃ ☃ ☃   ⛄⛄⛄ ☃   ⛄⛄⛄ ⛄⛄⛄ ⛄⛄⛄   ☃ ⛄⛄⛄ ⛄⛄⛄   ⛄⛄⛄ ⛄⛄⛄   ☃ ⛄⛄⛄   ⛄⛄⛄ ☃
            $ cat snowman | snorse
            ☃ ☃ ☃   ⛄⛄⛄ ☃   ⛄⛄⛄ ⛄⛄⛄ ⛄⛄⛄   ☃ ⛄⛄⛄ ⛄⛄⛄   ⛄⛄⛄ ⛄⛄⛄   ☃ ⛄⛄⛄   ⛄⛄⛄ ☃
            $ echo snowman > snowman.txt
            $ snorse snowman.txt
            ☃ ☃ ☃   ⛄⛄⛄ ☃   ⛄⛄⛄ ⛄⛄⛄ ⛄⛄⛄   ☃ ⛄⛄⛄ ⛄⛄⛄   ⛄⛄⛄ ⛄⛄⛄   ☃ ⛄⛄⛄   ⛄⛄⛄ ☃
            $ snorse -f snowman.txt
            ☃ ☃ ☃   ⛄⛄⛄ ☃   ⛄⛄⛄ ⛄⛄⛄ ⛄⛄⛄   ☃ ⛄⛄⛄ ⛄⛄⛄   ⛄⛄⛄ ⛄⛄⛄   ☃ ⛄⛄⛄   ⛄⛄⛄ ☃
            
        
        Python API
        
        .. code-block:: python
        
            >>> import snorse
            >>> snorse.snorse('snowman')
            u'\u2603 \u2603 \u2603   \u26c4\u26c4\u26c4 \u2603   \u26c4\u26c4\u26c4 \u26c4\u26c4\u26c4 \u26c4\u26c4\u26c4   \u2603 \u26c4\u26c4\u26c4 \u26c4\u26c4\u26c4   \u26c4\u26c4\u26c4 \u26c4\u26c4\u26c4   \u2603 \u26c4\u26c4\u26c4   \u26c4\u26c4\u26c4 \u2603'
            >>> print snors.snorse('snowman')
            ☃ ☃ ☃   ⛄⛄⛄ ☃   ⛄⛄⛄ ⛄⛄⛄ ⛄⛄⛄   ☃ ⛄⛄⛄ ⛄⛄⛄   ⛄⛄⛄ ⛄⛄⛄   ☃ ⛄⛄⛄   ⛄⛄⛄ ☃
        
        
        Profit!
        
        
        
        
        History
        -------
        
        0.1.0 (2014-01-11)
        ---------------------
        
        * First release on PyPI.
Keywords: snorse
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
