Skip to content

yagiziskirik/CharStripper

Repository files navigation

CharStripper

PyPI - Downloads PyPI - License PyPI - Python Version PyPI PyPI - Wheel PyPI - Implementation

This program replaces multiple characters in a text and also optionally lowers it.

Installation

pip install CharStripper

Usage

You can import this script and use it like this:

from CharStripper.core import CharStripper

cs = CharStripper({'o': 'e', 'r': 't', ' ': ''}, True)
cs.strip('Bo aR L  OS')  # returns 'beatles'

CharStripper class takes one mandatory and one optional input.

  • charsDict Gets a dictionary which replaces the dictionary keys with the dictionary values.
  • isLowercase Is a boolean which returns the value lowercased.

After defining the class, you can call cs.strip('YOUR_TEXT_HERE') for every repetition.