Metadata-Version: 1.1
Name: strings
Version: 0.1.2
Summary: Python strings for humans.
Home-page: http://github.com/pydanny/strings
Author: Daniel Greenfeld
Author-email: pydanny@gmail.com
License: MIT
Description: strings
        =============
        
        Python strings for humans.
        
        Usage:
        
        .. code-block:: python
        
            >>> from strings import string
            >>> s = string("Hello, World")
            >>> s
            'Hello, World'
            >>> s.len()
            12
            >>> s.length
            12
            >>> s.size
            12
            >>> s + ", What?"
            Traceback (most recent call last):
              File "strings.py", line 27, in <module>
                x = s.add(", world")
              File "strings.py", line 20, in add
                return self + string(value)
              File "strings.py", line 23, in __add__
                raise NotImplementedError("Use add instead")
            NotImplementedError: Use add instead
            >>> s.add(", What?")
            'Hello, World, What?'
            
        Background
        -----------
        
        Inspired by an April Fool's Day joke.
Keywords: python
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
