# ugreshaper **Repository Path**: abdusalamstd/ugreshaper ## Basic Information - **Project Name**: ugreshaper - **Description**: 将·维文文本转换为Unicode,以便正常显示文本。تېكسىت پىچىملاش - **Primary Language**: Python - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 5 - **Forks**: 1 - **Created**: 2020-10-12 - **Last Updated**: 2024-11-22 ## Categories & Tags **Categories**: utils **Tags**: None ## README ### Text reshaper for ug-language #### Basic: ```python # install: # pip install ugreshaper # usage: from ugreshaper import ugreshaper shaper = ugreshaper() reshaped_text = shaper .reshape( text ) ``` #### Sample: ```python #sample from ugreshaper import ugreshaper shaper = ugreshaper() text = "بۇ تېكىستنى ئەسلىگە كەلتۈرۈش بولىقى" print(text) # بۇ تېكىستنى ئەسلىگە كەلتۈرۈش بولىقى re_text = shaper.reshape(text) print(re_text) # ﻰﻘﯩﻟﻮﺑ ﺵﯛﺭﯜﺘﻟﻪﻛ ﻪﮕﯩﻠﺳﻪﺋ ﻰﻨﺘﺴﯩﻜﯧﺗ ﯘﺑ ``` Test: ![Code](/code.png)