Metadata-Version: 2.1
Name: ugreshaper
Version: 0.0.3
Summary: Text reshaper package
Home-page: https://github.com/Abdusalamstd/ugreshaper
Author: Ezmet
Author-email: azmat3111@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# ugreshaper
### Text reshaper for ug-language. بۇ تېكىستنى ئەسلىگە كەلتۈرۈش بولىقى
#### Ishlitish Usuli
```python
Windows:          pip install ugreshaper
Ubuntu18:         pip3 install ugreshaper

from ugreshaper import ugreshaper
re = ugreshaper()
reshaped_text = re.reshape( text )
```
#### Qachilap bolup:
```python
from googletrans import Translator

from ugreshaper import ugreshaper

tr = Translator(service_urls=['translate.google.cn'])
txt = tr.translate('Hello world. This is a text reshaper package',dest='ug',src='en')
txt = txt.text   # Original text
print(txt) #asli text
re = ugreshaper()
ans = re.reshape(txt) # Reshaped text
print(ans) #pichimlanghan text
```
Sample:
![Code](/code.png)   
![Answear](/ans.png)


