Metadata-Version: 2.1
Name: Excel-Trans
Version: 1.22.1
Summary: Excel Translate
Home-page: UNKNOWN
Author: Quvonchbek Bobojonov
Author-email: quvonchbek212006@gmail.com
License: UNKNOWN
Keywords: python,numpy,excel,Excel-Trans
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: deep-translator (==1.9.0)
Requires-Dist: numpy (==1.23.4)
Requires-Dist: openpyxl (==3.0.10)
Requires-Dist: pandas (==1.5.1)


# Excel_Trans 2022



Developed by Quvonchbek Bobojonov (c) 2022



## Examples of How To Use (Buggy Alpha Version)



### install

```terminal

pip install excel-trans==1.22.1

```



### Uzbek Translate



```python



from Excel_Trans import Translator



trans = Translator()



#Uzbek Translate



trans.UzbekTranslate(file='test.xlsx', to_variant='latin', save_file='test1.xlsx')



# get supported variants



print(trans.variant())



```



### Global Translate

```python



from Excel_Trans import Translator

trans = Translator()



#Global Translate



trans.GlobalTranslate(file='test.xlsx', target='ru', save_file='test1.xlsx')



#get supported languages



trans.get_supported_languages(as_dict=True)



```



