whisk-parser

Parse emails from Vosk API and Whisper.


Keywords
parse, emails, vosk, whisper, englishspanish
License
Other
Install
pip install whisk-parser==1.0.0

Documentation

Whisk Parser GitHub issues GitHub forks GitHub stars GitHub licence

Parse emails from Vosk API and Whisper.

Installation

Please make sure that you have updated pip to the latest version before installing whisk_parser.

You can install the module using Python Package Index using the below command.

pip install whisk_parser

Usage

First you have to import the module using the below code.

from whisk_parser import wp

Then you can use the parse_email method to convert a string to a valid email.

print(
    wp.parse_email('my email is john at gmail.com')
)
my email is john@gmail.com
print(
    wp.parse_email('my email is john underscore doe at gmail.com')
)
my email is john_doe@gmail.com
print(
    wp.parse_email('The aggregate and underlying individual governance indicators are available at www.govindicators.org.')
)
The aggregate and underlying individual governance indicators are available at www.govindicators.org.

Contributors