Skip to content

Commit 7683ada

Browse files
committed
refactor: removing non used parts (console_mode, run_doctest because no doctest), deprecated docs or shebang, useless main guard
1 parent 77da8e5 commit 7683ada

File tree

6 files changed

+0
-185
lines changed

6 files changed

+0
-185
lines changed

language_tool_python/__init__.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
"""LanguageTool through server mode.
2-
3-
migration URL: https://languagetool.org/http-api/migration.php
4-
"""
5-
61
from .language_tag import LanguageTag
72
from .match import Match
83
from .server import LanguageTool, LanguageToolPublicAPI

language_tool_python/config_file.py

Lines changed: 0 additions & 60 deletions
Original file line numberDiff line numberDiff line change
@@ -43,63 +43,3 @@ def _create_temp_file(self) -> str:
4343
atexit.register(lambda: os.unlink(tmp_file.name))
4444

4545
return tmp_file.name
46-
47-
48-
49-
"""
50-
❯ /usr/bin/java -cp /Users/johnmorris/.cache/language_tool_python/LanguageTool-5.6/languagetool-server.jar org.languagetool.server.HTTPServer --help
51-
Usage: HTTPServer [--config propertyFile] [--port|-p port] [--public]
52-
--config FILE a Java property file (one key=value entry per line) with values for:
53-
'maxTextLength' - maximum text length, longer texts will cause an error (optional)
54-
'maxTextHardLength' - maximum text length, applies even to users with a special secret 'token' parameter (optional)
55-
'secretTokenKey' - secret JWT token key, if set by user and valid, maxTextLength can be increased by the user (optional)
56-
'maxCheckTimeMillis' - maximum time in milliseconds allowed per check (optional)
57-
'maxErrorsPerWordRate' - checking will stop with error if there are more rules matches per word (optional)
58-
'maxSpellingSuggestions' - only this many spelling errors will have suggestions for performance reasons (optional,
59-
affects Hunspell-based languages only)
60-
'maxCheckThreads' - maximum number of threads working in parallel (optional)
61-
'cacheSize' - size of internal cache in number of sentences (optional, default: 0)
62-
'cacheTTLSeconds' - how many seconds sentences are kept in cache (optional, default: 300 if 'cacheSize' is set)
63-
'requestLimit' - maximum number of requests per requestLimitPeriodInSeconds (optional)
64-
'requestLimitInBytes' - maximum aggregated size of requests per requestLimitPeriodInSeconds (optional)
65-
'timeoutRequestLimit' - maximum number of timeout request (optional)
66-
'requestLimitPeriodInSeconds' - time period to which requestLimit and timeoutRequestLimit applies (optional)
67-
'languageModel' - a directory with '1grams', '2grams', '3grams' sub directories which contain a Lucene index
68-
each with ngram occurrence counts; activates the confusion rule if supported (optional)
69-
'word2vecModel' - a directory with word2vec data (optional), see
70-
https://github.com/languagetool-org/languagetool/blob/master/languagetool-standalone/CHANGES.md#word2vec
71-
'fasttextModel' - a model file for better language detection (optional), see
72-
https://fasttext.cc/docs/en/language-identification.html
73-
'fasttextBinary' - compiled fasttext executable for language detection (optional), see
74-
https://fasttext.cc/docs/en/support.html
75-
'maxWorkQueueSize' - reject request if request queue gets larger than this (optional)
76-
'rulesFile' - a file containing rules configuration, such as .langugagetool.cfg (optional)
77-
'warmUp' - set to 'true' to warm up server at start, i.e. run a short check with all languages (optional)
78-
'blockedReferrers' - a comma-separated list of HTTP referrers (and 'Origin' headers) that are blocked and will not be served (optional)
79-
'premiumOnly' - activate only the premium rules (optional)
80-
'disabledRuleIds' - a comma-separated list of rule ids that are turned off for this server (optional)
81-
'pipelineCaching' - set to 'true' to enable caching of internal pipelines to improve performance
82-
'maxPipelinePoolSize' - cache size if 'pipelineCaching' is set
83-
'pipelineExpireTimeInSeconds' - time after which pipeline cache items expire
84-
'pipelinePrewarming' - set to 'true' to fill pipeline cache on start (can slow down start a lot)
85-
Spellcheck-only languages: You can add simple spellcheck-only support for languages that LT doesn't
86-
support by defining two optional properties:
87-
'lang-xx' - set name of the language, use language code instead of 'xx', e.g. lang-tr=Turkish
88-
'lang-xx-dictPath' - absolute path to the hunspell .dic file, use language code instead of 'xx', e.g.
89-
lang-tr-dictPath=/path/to/tr.dic. Note that the same directory also needs to
90-
contain a common_words.txt file with the most common 10,000 words (used for better language detection)
91-
--port, -p PRT port to bind to, defaults to 8081 if not specified
92-
--public allow this server process to be connected from anywhere; if not set,
93-
it can only be connected from the computer it was started on
94-
--allow-origin [ORIGIN] set the Access-Control-Allow-Origin header in the HTTP response,
95-
used for direct (non-proxy) JavaScript-based access from browsers.
96-
Example: --allow-origin "https://my-website.org"
97-
Don't set a parameter for `*`, i.e. access from all websites.
98-
--verbose, -v in case of exceptions, log the input text (up to 500 characters)
99-
--languageModel a directory with '1grams', '2grams', '3grams' sub directories (per language)
100-
which contain a Lucene index (optional, overwrites 'languageModel'
101-
parameter in properties files)
102-
--word2vecModel a directory with word2vec data (optional), see
103-
https://github.com/languagetool-org/languagetool/blob/master/languagetool-standalone/CHANGES.md#word2vec
104-
--premiumAlways activate the premium rules even when user has no username/password - useful for API servers
105-
"""

language_tool_python/console_mode.py

Lines changed: 0 additions & 64 deletions
This file was deleted.

language_tool_python/download_lt.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
#!/usr/bin/env python
2-
# -*- coding: utf-8 -*-
3-
"""Download latest LanguageTool distribution."""
4-
51
import logging
62
import os
73
import re
@@ -171,7 +167,3 @@ def download_lt(language_tool_version: Optional[str] = LTP_DOWNLOAD_VERSION) ->
171167
if extract_path in old_path_list:
172168
return
173169
download_zip(language_tool_download_url, download_folder)
174-
175-
176-
if __name__ == '__main__':
177-
sys.exit(download_lt())

language_tool_python/which.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
3-
"""Cross-platform which command."""
4-
51
import os
62
import sys
73
from typing import List, Optional
@@ -70,7 +66,3 @@ def main() -> int:
7066
path = which(arg)
7167
if path:
7268
print(path)
73-
74-
75-
if __name__ == '__main__':
76-
sys.exit(main())

run_doctest.py

Lines changed: 0 additions & 40 deletions
This file was deleted.

0 commit comments

Comments
 (0)