How to convert unicode to Kruti Dev 010?
I'm using python speech recognition library to convert speech to text and displaying it using tkinter Text widget but it's not displaying in Kruti Dev.
# class variable
__thisTextArea = Text(__root)
Font_tuple = font.Font(family='Kruti Dev 010', size=16)
# inside constructor
self.__thisTextArea.config(font = self.Font_tuple, yscrollcommand=self.__thisScrollBar.set)
# inside speech recognition function
self.__thisTextArea.insert(INSERT, text_obtained)
self.__thisTextArea.insert(END,' ')
Also, on saving the file speech recognized text is not saving however typed text is saving.