Reference Guide to the Native SDK Python API#

Quick Start: Just create a document and pipeline, pass your document trough the Pipeline, and your done.

from eot.wowool.native.core import PipeLine
from eot.wowool.document import Document

document = Document("Mark Van Den Berg works at Omega Pharma.")
# Create an analyzer for a given language and options
process = PipeLine("english,entity")
# Process the data
document = process(document)
print(document)