textclip python arabic

Solutions on MaxInterview for textclip python arabic by the best coders in the world

showing results for - "textclip python arabic"
Terence
01 Oct 2017
1import arabic_reshaper
2from bidi.algorithm import get_display
3
4def formatArabicSentences(sentences):
5   formatedSentences = arabic_reshaper.reshape(sentences)
6   return get_display(formatedSentences)