Monitor your target accounts and identify new opportunities
Write Python and use any of the 350k+ PyPi packages available. Refer to the Pipedream Python docs to learn more.
The Purple Sonar API offers real-time threat intelligence and URL analysis, crucial for enhancing cybersecurity measures. By integrating with Pipedream, you can create workflows that automate the process of monitoring, analyzing, and responding to potential threats. Use cases include triaging alerts, enriching incident reports with additional data, or even proactively scanning URLs in company communications to pre-emptively block malicious links.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
sonar: {
type: "app",
app: "sonar",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api-public.purplesonar.com/api/v1/enrich/domain/google.com`,
headers: {
Authorization: `Bearer ${this.sonar.$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}}