Metadata-Version: 1.1
Name: pathvalidate
Version: 0.9.2
Summary: pathvalidate is a python library to validate/sanitize a string such as filename/variable-name/excel-sheet-name.

Home-page: https://github.com/thombashi/pathvalidate
Author: Tsuyoshi Hombashi
Author-email: gogogo.vm@gmail.com
License: MIT License
Description: pathvalidate
        ============
        
        .. image:: https://badge.fury.io/py/pathvalidate.svg
            :target: https://badge.fury.io/py/pathvalidate
        
        .. image:: https://img.shields.io/pypi/pyversions/pathvalidate.svg
            :target: https://pypi.python.org/pypi/pathvalidate
        
        .. image:: https://img.shields.io/travis/thombashi/pathvalidate/master.svg?label=Linux
            :target: https://travis-ci.org/thombashi/pathvalidate
            :alt: Linux CI test status
        
        .. image:: https://img.shields.io/appveyor/ci/thombashi/pathvalidate/master.svg?label=Windows
            :target: https://ci.appveyor.com/project/thombashi/pathvalidate/branch/master
            :alt: Windows CI test status
        
        .. image:: https://coveralls.io/repos/github/thombashi/pathvalidate/badge.svg?branch=master
            :target: https://coveralls.io/github/thombashi/pathvalidate?branch=master
        
        Summary
        -------
        
        pathvalidate is a python library to validate/sanitize a string such as filename/variable-name/excel-sheet-name.
        
        Feature
        -------
        
        - Validate/Sanitize a string:
            - file name
            - file path
            - variable name
            - Excel sheet name
            - SQLite table/attribute name
        
        Examples
        ========
        
        Validate a filename
        -------------------
        
        .. code:: python
        
            import pathvalidate
        
            try:
                pathvalidate.validate_filename("_a*b:c<d>e%f/(g)h+i_0.txt")
            except ValueError:
                print("invalid filename!")
        
        .. code::
        
            invalid filename!
        
        Sanitize a filename
        -------------------
        
        .. code:: python
        
            import pathvalidate
        
            filename = "_a*b:c<d>e%f/(g)h+i_0.txt"
            print(pathvalidate.sanitize_filename(filename))
        
        .. code::
        
            _abcde%f(g)h+i_0.txt
        
        Sanitize a variable name
        ------------------------
        
        .. code:: python
        
            import pathvalidate
        
            print(pathvalidate.sanitize_python_var_name("_a*b:c<d>e%f/(g)h+i_0.txt"))
        
        .. code::
        
            abcdefghi_0txt
        
        For more information
        --------------------
        
        More examples are available at 
        http://pathvalidate.readthedocs.org/en/latest/pages/examples/index.html
        
        Installation
        ============
        
        ::
        
            pip install pathvalidate
        
        
        Dependencies
        ============
        
        Python 2.7 or 3.3+
        
        - `DataPropery <https://github.com/thombashi/DataProperty>`__
        
        
        Test dependencies
        -----------------
        
        - `pytest <http://pytest.org/latest/>`__
        - `pytest-runner <https://pypi.python.org/pypi/pytest-runner>`__
        - `tox <https://testrun.org/tox/latest/>`__
        
        Documentation
        =============
        
        http://pathvalidate.readthedocs.org/en/latest/
        
        
Keywords: path,validation,validator,sanitize
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
