https://github.com/quvonchbekbobojonov/excel-trans
Excel Translate
https://github.com/quvonchbekbobojonov/excel-trans
Last synced: about 2 months ago
JSON representation
Excel Translate
- Host: GitHub
- URL: https://github.com/quvonchbekbobojonov/excel-trans
- Owner: QuvonchbekBobojonov
- License: mit
- Created: 2022-10-25T15:27:54.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-10-01T09:47:42.000Z (about 2 years ago)
- Last Synced: 2023-10-01T10:30:38.819Z (about 2 years ago)
- Language: Python
- Size: 38.1 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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
```pythonfrom 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)
```