Metadata-Version: 2.1
Name: sztaki
Version: 0.1.3
Summary: Hungarian to English words tranlator
Home-page: https://github.com/adyachok/sztaki
Author: Andras Gyacsok
Author-email: atti.dyachok@gmail.com
License: MIT
Platform: UNKNOWN
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: beautifulsoup4 (==4.11.1)
Requires-Dist: certifi (==2021.10.8)
Requires-Dist: charset-normalizer (==2.0.12)
Requires-Dist: dataclasses-json (==0.5.7)
Requires-Dist: idna (==3.3)
Requires-Dist: googletrans (==4.0.0rc1)
Requires-Dist: marshmallow (==3.15.0)
Requires-Dist: marshmallow-enum (==1.5.1)
Requires-Dist: mypy-extensions (==0.4.3)
Requires-Dist: packaging (==21.3)
Requires-Dist: pyparsing (==3.0.8)
Requires-Dist: requests (==2.27.1)
Requires-Dist: soupsieve (==2.3.2.post1)
Requires-Dist: typing-inspect (==0.7.1)
Requires-Dist: typing-extensions (==4.2.0)
Requires-Dist: urllib3 (==1.26.9)

## Sztaki

### Description
This package is meant to translate Hungarian words to English or Ukrainian.


### Usage

The main entry point is **SztakiTranslator** class.
The translator will translate words and store them into SkovorodaDictionary class.

```python
from sztaki.translator import SztakiTranslator


translator = SztakiTranslator(dict_name='Stay In God\'s Love.',
                                  dict_description='Translated 4th chapter '
                                                   'of Hundatian version Stay '
                                                   'In God\'s Love',
                                  dict_language='Hungarian')
translator.translate_word_with_sztaki('világ')
print(translator.sdict.to_dict())
print(translator.not_translated_words)
```

