Spaces:
Sleeping
Sleeping
Rename language_tool_python to language_tool_python/__init__.py
Browse files- language_tool_python +0 -0
- language_tool_python/__init__.py +9 -0
language_tool_python
DELETED
File without changes
|
language_tool_python/__init__.py
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
"""LanguageTool through server mode.
|
2 |
+
|
3 |
+
migration URL: https://languagetool.org/http-api/migration.php
|
4 |
+
"""
|
5 |
+
|
6 |
+
from .language_tag import LanguageTag
|
7 |
+
from .match import Match
|
8 |
+
from .server import LanguageTool, LanguageToolPublicAPI
|
9 |
+
from . import utils
|