-
Notifications
You must be signed in to change notification settings - Fork 15
Transliterate #19
Copy link
Copy link
Open
Labels
enhancementNew feature or requestNew feature or requestquestionFurther information is requestedFurther information is requested
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestquestionFurther information is requestedFurther information is requested
Type
Fields
Give feedbackNo fields configured for issues without a type.
I was hoping you might advise me on how to incorporate transliteration into a text transformation pipeline.
Let's say I want to use a 3rd party library like
from unidecode import unidecode.I could create a bistring with
new_bistr = bistr(text.modified, unidecode(text.modified))but I would loose all the previous operations.
Is there a way to fold in a modified string that is calculated outside bistring's capabilities?