Guru is reinventing knowledge sharing, providing verified information from experts on your team: where you work and when you need it most.
Write Python and use any of the 350k+ PyPi packages available. Refer to the Pipedream Python docs to learn more.
The Guru API on Pipedream enables the automation of knowledge sharing and management tasks within your team or organization. Using this API, you can programmatically interact with Guru's knowledge base, including retrieving card details, creating new cards, and updating existing content. By leveraging Pipedream's serverless platform, you can craft workflows that trigger based on events from other services, process the data, and perform actions in Guru to keep your team's knowledge up to date and accessible.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
guru: {
type: "app",
app: "guru",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.getguru.com/api/v1/teams`,
headers: {
"Accept": `application/json`,
},
auth: {
username: `${this.guru.$auth.username}`,
password: `${this.guru.$auth.api_key}`,
},
})
},
})
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}}