Metadata-Version: 1.1
Name: python-string-utils
Version: 0.3.0
Summary: Utility functions for strings checking and manipulation.
Home-page: https://github.com/daveoncode/python-string-utils
Author: Davide Zanotti
Author-email: davidezanotti@gmail.com
License: MIT
Description: # Python String Utils
        
        A small utility library to check and manipulate strings.
        
        - simple and pythonic
        - fast (based on compiled regex)
        - no external dependencies
        - fully documented
        - PEP8 complaint
        - 100% code coverage
        - tested against multiple python versions (2.7, 3.2, 3.3, 3.4)
        
        
        ## What's inside...
        
        ### String checking functions:
        
        - is_string
        - is_ip
        - is_url
        - is_email
        - is_credit_card
        - is_camel_case
        - is_snake_case
        - is_json
        - is_uuid
        - words_count
        - contains_html
        
        ### String manipulation and generation
        
        - camel_case_to_snake
        - snake_case_to_camel
        - reverse
        - uuid
        - shuffle
        - strip_html
        - prettify
        
        
        ...and more are coming!
        
        
        ## Installation
        
            pip install python-string-utils
        
        
        ## Documentation
        
        Full API documentation available on: <http://python-string-utils.readthedocs.org/en/latest/>
        
Keywords: string str utilities development
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
