Skip to content

Neuri-AI/whisk-parser

Repository files navigation

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.

import whisk_parser as 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 [email protected]
print(
    wp.parse_email('my email is john underscore doe at gmail.com')
)
my email is [email protected]
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

About

Parse emails from Vosk API and Whisper.

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages