textpipeliner icon indicating copy to clipboard operation
textpipeliner copied to clipboard

engine.process() does not print anything

Open bmanobel opened this issue 4 years ago • 1 comments

Hi, I am running the very same example code in jupyter and in spyder and it does not print anything, could you help me?

Thanks!

bmanobel avatar Jul 22 '20 11:07 bmanobel

Hi,

Perhaps you've already solved this, I had the same problem.

If you look in the code, engine.py, you see that the function engine.process() returns a variable called result.

So if you use the example code from the readme you can just change the last line to:

result = engine.process() print(result)

or just print(engine.process())

ohlmic avatar Nov 10 '20 06:11 ohlmic