Metadata-Version: 2.1
Name: shear
Version: 0.0.4
Summary: 🐑 Shear: Trim Excess Quotes from your Strings in Python and on the Command Line
Home-page: https://github.com/DanielJDufour/shear
Author: Daniel J. Dufour
Author-email: daniel.j.dufour@gmail.com
License: UNKNOWN
Download-URL: https://github.com/DanielJDufour/shear/tarball/download
Description: # Shear
        Trim Excess Quotes from your Strings
        # features
        -  &nbsp; works great out of the box  
        -  &nbsp; removes regular quotes like `"` and `'`  
        -  &nbsp; removes python quotes like `'''`, `"""`, and `b''`  
        -  &nbsp; removes JavaScript quotes like `` ` ``  
        -  &nbsp; command line interface included
        
        # install
        `pipenv install shear` or `pip3 install shear`
        
        # usage
        ## python
        ```python
        from shear import shear
        
        string = "`Sheep`"
        
        string = shear(string)
        # string is now Sheep instead of `Sheep`
        ```
        ## command line interface
        ```bash
        string="'Sheep'"
        
        echo $(shear $string)
        # string is now Sheep instead of 'Sheep'
        ```
        
        # support
        Post an issue at https://github.com/DanielJDufour/shear/issues or email the package author at daniel.j.dufour@gmail.com
        
Keywords: python,string,unquote
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Python :: 3
Classifier: License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
