Metadata-Version: 1.1
Name: wordpad
Version: 0.1.0
Summary: Adds padding to the right or left of a given string
Home-page: https://github.com/scisco/wordpad
Author: Alireza J (scisco)
Author-email: scisco7@gmail.com
License: CC0
Download-URL: https://github.com/scisco/wordpad/tarball/0.1.0
Description: wordpad
        +++++++
        
        .. image:: https://travis-ci.org/scisco/wordpad.svg?branch=master
            :target: https://travis-ci.org/scisco/wordpad
        
        Adds padding to the right or left of a given string
        
        Installation
        ============
        
        ::
        
            $ pip install wordpad
        
        or::
        
            $ python setup.py install
        
        
        Tests
        =====
        
        ::
        
            $ python setup.py test
        
        
        Example
        =======
        
        ::
        
          >>> from wordpad import pad
          >>> pad('1', 3)
          '001'
          >>> pad('1', 3, direction='right')
          '100'
          >>> pad('his', 4, char='t')
          'this'
        
        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: Freeware
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
