dict.cc.py
1.0.0
واجهة سطر أوامر بسيطة وغير رسمية للكتابة بلغة بايثون. وهو يدعم الترجمات بين اللغات الأكثر شيوعا المتاحة على الموقع.
يعمل dict.cc.py مع Python 2 وPython 3 وهو متاح على PyPi. كل ما عليك فعله لتثبيته هو:
pip install dict.cc.py
إنه سهل للغاية! فيما يلي مثال سريع لاستخدامه لترجمة كلمة beer
بين الإنجليزية ( en
) والسويدية ( sv
):
$ dict.cc.py en sv beer
Showing 2 of 2 result(s)
English Swedish
======== =======
beer ...................................................... öl
beer glass ................................................ ölglas
يمكنك أيضًا البحث عن العبارات باستخدام علامات الاقتباس:
% dict.cc.py en de body
Showing 10 of 49 result(s)
Englisch Deutsch
========= =======
body ...................................................... Körper-
a ' body [Scot.] [allbody] .................................. jedermann
body [also wine] .......................................... Körper [auch bei Wein]
body ...................................................... Leib
body [dead body ] ......................................... Leiche
body ...................................................... Karosserie
body [trunk] .............................................. Rumpf
body [main part] .......................................... Hauptteil
body ...................................................... Gehäuse
body ...................................................... Körperschaft
body [society, organisation for sth.] ..................... Gesellschaft [Organisation]
اللغات المتاحة تشمل: en
، de
، sv
، pt
، it
، fr
، ro
، nl
، no
.
>>> from dictcc import Dict
>>> translator = Dict()
>>> result = translator.translate("hello", from_language="en", to_language="de")
>>> result.translation_tuples[:2]
[('Hello !', 'Hallo!'), ('Hello !', 'Servus! [bayer.] [österr.]')]
المجال العام.