📦 works great out of the box
✂️ removes regular quotation marks like "
and '
🐍 removes python quotation marks like '''
, """
, and b''
⚡ removes JavaScript quotation marks like `
💻 command line interface included
pipenv install shear
or pip3 install shear
from shear import shear
string = "`Sheep`"
string = shear(string)
# string is now Sheep instead of `Sheep`
string="'Sheep'"
echo $(shear $string)
# string is now Sheep instead of 'Sheep'
Post an issue at https://github.com/DanielJDufour/shear/issues or email the package author at daniel.j.dufour@gmail.com