Translating Knime Analytics Workflows to Code

Hello,

I am writing to see if anyone has heard of a tool that converts Knime Analytics workflow exports to code.

An example use can would be prototyping in Knime Analytics and then converting the workflow to code for deployment in a cloud environment.

Any feedback is greatly appreciated!

@jwolf842 there is this project although I do not fully understand the purpose. But you could give it a try.

In addition to the below suggestion, If you’re developing simple ETL (i.e. no machine learning etc), I’d highly reccomend prototyping using DuckDB within knime (via DB nodes). You can then export the query and transpile it to another dialect ( e.g. databricks, snowflake , redshift and many others) pretty easily using SQLGlot python package. Then you can pretty much move the dev code to prod with little to no refactoring.