Parse emails from Vosk API and Whisper.
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
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.
- Luis Alfredo Reyes runesc