Metadata-Version: 1.1
Name: stringlike
Version: 0.3.3
Summary: Classes for mimicking string behavior
Home-page: https://github.com/CovenantEyes/py_stringlike
Author: Elliot Cameron
Author-email: elliot.cameron@covenanteyes.com
License: UNKNOWN
Download-URL: https://github.com/CovenantEyes/py_stringlike/tarball/v0.3.3
Description: 
        String-Like Classes
        -------------------
        
        Provides a ``StringLike`` class that adds the behavior of Python's built-in
        ``string`` to its children. This is useful when you want to implement a class
        that behaves like a string but encapsulates some additional functionality
        that a normal string doesn't provide.
        
        Additionally provides ``LazyString`` and ``CachedLazyString`` classes which
        behave exactly like strings but allow strings to be constructed in a thunk
        (i.e. lazily) instead of strictly (i.e. immediately).
        
        An example of how it can be used:
        http://developer.covenanteyes.com/stringlike-in-python/
Keywords: string,lazy
Platform: any
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Other Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
