textpipeliner
textpipeliner copied to clipboard
engine.process() does not print anything
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!
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())