Python SDK
The Airplane Python SDK is available via
PyPI (airplanesdk
). To install it, run:
bashCopied1pip install airplanesdk
Output
This SDK can be used to produce output that will be rendered in the UI when someone runs your task. To learn more, see Output:
pythonCopied1import airplane23airplane.append_output({"name": "Alabama", "capital": "Montgomery"})4airplane.append_output({"name": "Alaska", "capital": "Juneau"})5airplane.append_output({"name": "Arizona", "capital": "Phoenix"})