sashtech commited on
Commit
f89abc8
·
verified ·
1 Parent(s): 571a872

Rename language_tool_python to language_tool_python/__init__.py

Browse files
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