We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac3335a commit ddcae0eCopy full SHA for ddcae0e
src/lingodotdev/__init__.py
@@ -1,9 +1,11 @@
1
-"""
2
-Public entry point for the Lingo.dev Python SDK.
+"""Public entry point for the Lingo.dev Python SDK.
+
3
+The package exposes LingoDotDevEngine, the asynchronous client used to access
4
+the Lingo.dev localization API. Refer to the engine module for detailed usage
5
+guidance.
6
-The package exposes :class:`~lingodotdev.engine.LingoDotDevEngine`, the
-asynchronous client used to access the Lingo.dev localization API. Refer to the
-engine module for detailed usage guidance.
7
+ async with LingoDotDevEngine({"api_key": "..."}) as engine:
8
+ result = await engine.localize_text("Hello", {"target_locale": "es"})
9
"""
10
11
__version__ = "1.3.0"
0 commit comments