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})
The Python API does not require authentication.