gatsby-normalizer

Normalize Keyword, URL, and etc.


Keywords
gatsby, normalizer
License
LGPL-3.0
Install
pip install gatsby-normalizer==1.0.3

Documentation

Gatsby Normalizer

https://img.shields.io/badge/version-1.0.3-green.svg?style=flat

Installation

To install gatsby-normalizer, simply:

$ sudo pip install gatsby-normalizer

API References

normalize_searchterm

  1. remove special characters
  2. Remove tab, new line
  3. Lower cases
>>> from gatsby_normalizer import *
>>> normalize_searchterm('HELLO+WORLD')
'hello world'