Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/quvonchbekbobojonov/uzbek-language
This package was created to correct Uzbek spelling mistakes and translate from Latin to Cyrillic
https://github.com/quvonchbekbobojonov/uzbek-language
python python3 regions-uzbekistan uzbek uzbek-language uzbek-tilida
Last synced: 13 days ago
JSON representation
This package was created to correct Uzbek spelling mistakes and translate from Latin to Cyrillic
- Host: GitHub
- URL: https://github.com/quvonchbekbobojonov/uzbek-language
- Owner: QuvonchbekBobojonov
- License: mit
- Created: 2023-10-01T10:18:47.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-10T04:11:27.000Z (about 1 year ago)
- Last Synced: 2024-11-21T14:41:08.360Z (about 1 month ago)
- Topics: python, python3, regions-uzbekistan, uzbek, uzbek-language, uzbek-tilida
- Language: Python
- Homepage: https://pypi.org/project/uzbek-language/
- Size: 478 KB
- Stars: 19
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Uzbek-language
I am editing the README file. Adding some more details about the project description.
This package was created to correct Uzbek spelling mistakes and translate from Latin to Cyrillic
### Install package
```bash
pip install uzbek-language
```
### Use in translator
```python
from uzbek_language import Translatortext = "salom dunyo"
translate = Translator(text=text)
# output text converted to latin
print(transtale.latin())# output text converted to cyrillic
print(transtale.cyrillic())# auto output the modified text
print(transtale.auto())
```
### Use in spelling
```python
from uzbek_language import Spellings = Spelling(word='salom')
# if the word is a mistake, it will say the same word
print(s.get_matches())# determine whether the word is correct or incorrect
print(s.is_availible())
```
#### Developed by Quvonchbek Bobojonov (c) 2023