Metadata-Version: 1.0
Name: left-pad
Version: 0.0.3
Summary: Pad a string to the left with any number of characters
Home-page: https://docs.python.org/2/library/stdtypes.html#str.rjust
Author: Matthew Perry
Author-email: perrygeo@gmail.com
License: BSD
Description: 
        Pad a string to the left with any number of characters
        
            pip install left-pad
        
        Then
        
            >>> from left_pad import left_pad
            >>> s = "abc"
            >>> left_pad(s, 2, "+")
            '++abc'
        
        Make sure to add left-pad to your dependencies in your next project.
        
        Or, if you want to reinvent the wheel, go ahead and try to do it
        with the standard library
        
            >>> s.rjust(len(s) + 2, '+')
            '++abc'
        
Platform: UNKNOWN
