A Data Management Platform for all of your data needs.
Write Python and use any of the 350k+ PyPi packages available. Refer to the Pipedream Python docs to learn more.
Data247 is a powerful service that provides real-time data such as phone carrier lookup, email to SMS gateway, text/SMS verification, and append information (e.g., appending carrier data to phone numbers). By leveraging Data247 with Pipedream, you can automate various data enrichment processes, validate customer contact details, or integrate enhanced data insights into your business workflows. This empowers you to maintain data accuracy, streamline communication strategies, and customize user experiences based on rich data sets.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
data247: {
type: "app",
app: "data247",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.data247.com/v3.0`,
params: {
key: `${this.data247.$auth.api_key}`,
api: `MT`,
phone: `{your_phone_number_here}`,
},
})
},
})
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}}