Anything you can do in Python can be done in a Pipedream Workflow. This includes using any of the 350,000+ PyPi packages available in your Python powered workflows.
Go to sitefrom pipedream.script_helpers import (steps, export)
# Reference data from previous steps
print(steps["trigger"]["context"]["id"])
# Return data for use in future steps
export("foo", {"test":True})
// To use previous step data, pass the `steps` object to the run() function
export default defineComponent({
async run({ steps, $ }) {
// Return data to use it in future steps
return steps.trigger.event
},
})