Open Data Platform for Headless Content
Write Python and use any of the 350k+ PyPi packages available. Refer to the Pipedream Python docs to learn more.
Directus is a headless CMS that gives you all the power of a database without
any of the complexities. With Directus, you can easily build custom
applications without having to worry about over-complicating your database.
Here are a few examples of what you can build with the Directus API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
directus: {
type: "app",
app: "directus",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.directus.$auth.api_host}/users/me`,
headers: {
Authorization: `Bearer ${this.directus.$auth.access_token}`,
},
})
},
})
Python API on Pipedream offers developers to build or automate a variety of
tasks from their web and cloud apps. With the Python API, users are able to
create comprehensive and flexible scripts, compose and manage environment
variables, and configure resources to perform a range of functions.
By using Pipedream, you can easily:
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}}