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 244d5f6 commit 92518abCopy full SHA for 92518ab
NLPPlus/__init__.py
@@ -61,6 +61,19 @@ def output(self) -> Optional[Any]:
61
62
63
class Engine:
64
+ """NLP++ Engine for a given working folder.
65
+
66
+ Args:
67
68
+ working_folder(optional, PathLike): Working folder for this
69
+ instance. If None, a temporary directory will be created
70
+ and initialized with the default analyzers. Otherwise,
71
+ this must contain an `analyzers` and a `data` folder,
72
+ unless `initialize` is `True`.
73
+ verbose(optional, bool): Be more verbose.
74
+ initialize(optional, bool): Initialize `working_folder` with
75
+ the default analyzers.
76
+ """
77
def __init__(
78
self,
79
working_folder: Optional[PathLike] = None,
0 commit comments