Community experience platform for developers
Write Python and use any of the 350k+ PyPi packages available. Refer to the Pipedream Python docs to learn more.
Provide a source and one of username/uid/email params to return a member with that identity, if one exists. Common values for source include github, twitter, and email. See the docs here
The Orbit API enables you to monitor and manage the uptime and performance of your websites and internet services. Through automation and integration on Pipedream, you can streamline incident management, aggregate performance data, and enhance communication across your tech stack. By leveraging real-time data from Orbit, you can trigger workflows based on site status changes, get aggregated insights, and automate responses to performance issues.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
orbit: {
type: "app",
app: "orbit",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.orbit.love/api/v1/workspaces`,
headers: {
Authorization: `Bearer ${this.orbit.$auth.api_token}`,
},
})
},
})
Develop, run and deploy your Python code in Pipedream workflows. Integrate seamlessly between no-code steps, with connected accounts, or integrate Data Stores and manipulate files within a workflow.
This includes installing PyPI packages, within your code without having to manage a requirements.txt
file or running pip
.
Below is an example of using Python to access data from the trigger of the workflow, and sharing it with subsequent workflow steps:
def handler(pd: "pipedream"):
# Reference data from previous steps
print(pd.steps["trigger"]["context"]["id"])
# Return data for use in future steps
return {"foo": {"test":True}}