Metadata-Version: 1.1
Name: pystrext
Version: 0.1.7
Summary: Python string extension
Home-page: https://pypi.python.org/pypi/pystrext
Author: Eric Lapouyade
Author-email: elapouya@gmail.com
License: LGPL 2.1
Description: 
        ========
        PyStrExt
        ========
        
        This package contains many helper functions to manipulate strings.
        
        Read the fabulous doc `here <http://pystrext.readthedocs.org/en/latest/>`_
        
        Quickstart
        ==========
        
        To install::
        	
        	pip install pystrext
        	
        Usage::
        
            >>> import pystrext as strext
            >>> h,m,s = strext.extracts('elapse time : 5h 7m 36s','(\d+)h (\d+)m (\d+)s',['0']*3)
            >>> h,m,s
            ('5', '7', '36')
            >>> print strext.no_one_many(0,"No item","One item","%(n)s items")
            No item
            >>> print strext.no_one_many(1,"No item","One item","%(n)s items")
            One item
            >>> print strext.no_one_many(36,"No item","One item","%(n)s items")
            36 items
          	
        ... more functions available : `read the doc  <http://pystrext.readthedocs.org/en/latest/>`_
        
        News
        ====
        0.1.7 (2015-01-02)
        ------------------
        - add CHANGES.rst file
        - add a Quickstat in documentation
        
        0.1.6 (2015-01-01)
        ------------------
        - add docstrings
        - add sphinx doc
        
        0.1.1 (2014-12-30)
        ------------------
        - First commit
        - No doc
        
Keywords: string helpers
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
