معرفی شرکت ها


babla-translate-1.0


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

A module for translating words and generating examples using Bab.la dictionary.
ویژگی مقدار
سیستم عامل -
نام فایل babla-translate-1.0
نام babla-translate
نسخه کتابخانه 1.0
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Michał Pawłowski
ایمیل نویسنده <michal.paw000@gmail.com>
آدرس صفحه اصلی https://github.com/mepavv/babla_translate
آدرس اینترنتی https://pypi.org/project/babla-translate/
مجوز MIT
# babla-translate A Python module for translating words and generating examples using [Bab.la](https://bab.la) dictionary. ## Installation ```pip install babla_translate``` ## Functions Module contains class `Babla` with two functions: ```python babla.translation(word, exact_word = 1) babla.example(word, exact_word = 1) ``` `word`, accepts string, which you'd like to translate.\ `exact_word`, optional argument which takes int (1 by default), defining if function has to use the exact word; for example if for word 'used' translation of 'use' should also be shown. ## Entry point All operations are implemented in class `Babla`. It takes source and target languages ("english", "polish", "german", "spanish"...) as required arguments. ```python from babla_translate import Babla babla = Babla("english", "polish") ``` All usable languages can be found [here](https://bab.la/dictionary/). ## Usage * Getting translations: ```python >>> list(babla.translation("use")) ['użyć', 'używać', 'wykorzystać', 'wykorzystywać', 'zastosować', 'skorzystać', 'zażyć',...] ``` * Getting examples: ```python >>> for context in babla.example("use"): ... print(context) 'This use of turmeric leaves usually takes place in areas where turmeric is grown locally, since the leaves used are freshly picked.' ``` All the functions return iterators to not request more results than needed.


نیازمندی

مقدار نام
- requests
- beautifulsoup4


نحوه نصب


نصب پکیج whl babla-translate-1.0:

    pip install babla-translate-1.0.whl


نصب پکیج tar.gz babla-translate-1.0:

    pip install babla-translate-1.0.tar.gz