Nested functions and chaining

Toolvix supports automatic discovery and explicit pipeline input through returned file paths.

Basic chaining

from toolvix import *
merged = pdfMerge()
pdfToword(merged)

Short form: pdfToword(pdfMerge())

PDF chaining

Image chaining

Important rule

pdfToword() means all PDFs in the current folder; pdfToword(pdfMerge()) means only the PDF returned by pdfMerge(). The same rule applies to other functions with a source parameter.

Back to documentation index