← Curated + Python integrations

Run Python Code with Python API on New Email Unsubscribed from Curated API

Pipedream makes it easy to connect APIs for Python, Curated and 2,500+ other apps remarkably fast.

Trigger workflow on
New Email Unsubscribed from the Curated API
Next, do this
Run Python Code with the Python API
No credit card required
Intro to Pipedream
Watch us build a workflow
Watch us build a workflow
8 min
Watch now ➜

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo

Developers Pipedream

Getting Started

This integration creates a workflow with a Curated trigger and Python action. When you configure and deploy the workflow, it will run on Pipedream's servers 24x7 for free.

  1. Select this integration
  2. Configure the New Email Unsubscribed trigger
    1. Connect your Curated account
    2. Configure timer
    3. Select a Publication ID
  3. Configure the Run Python Code action
    1. Connect your Python account
  4. Deploy the workflow
  5. Send a test event to validate your setup
  6. Turn on the trigger

Details

This integration uses pre-built, source-available components from Pipedream's GitHub repo. These components are developed by Pipedream and the community, and verified and maintained by Pipedream.

To contribute an update to an existing component or create a new component, create a PR on GitHub. If you're new to Pipedream component development, you can start with quickstarts for trigger span and action development, and then review the component API reference.

Trigger

Description:Emit new event when an email is unsubscribed.
Version:0.0.2
Key:curated-new-email-unsubscribed

Curated Overview

The Curated API enables you to automate the management of your newsletters. With it, you can create issues, manage subscribers, and curate content, all programmatically. This allows for rich integrations with other tools and systems, offering opportunities to streamline your newsletter operations. Using Pipedream, you can harness this functionality to set up custom workflows, trigger actions based on various events, and connect Curated with a plethora of other services to enhance your newsletter productivity.

Trigger Code

import common from "../common/common.mjs";

export default {
  ...common,
  name: "New Email Unsubscribed",
  version: "0.0.2",
  key: "curated-new-email-unsubscribed",
  description: "Emit new event when an email is unsubscribed.",
  type: "source",
  dedupe: "unique",
  props: {
    ...common.props,
    publicationId: {
      propDefinition: [
        common.props.curated,
        "publicationId",
      ],
    },
  },
  methods: {
    ...common.methods,
    emitEvent(data) {
      this.$emit(data, {
        id: data.id,
        summary: `New email unsubscribed with id ${data.id}`,
        ts: new Date(),
      });
    },
    async getResources(args = {}) {
      const {
        page, data,
      } = await this.curated.getUnsubscribers({
        ...args,
        publicationId: this.publicationId,
      });

      return {
        currentPage: page,
        resources: data,
      };
    },
  },
};

Trigger Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI and CLI.
LabelPropTypeDescription
CuratedcuratedappThis component uses the Curated app.
N/Adb$.service.dbThis component uses $.service.db to maintain state between executions.
timer$.interface.timer
Publication IDpublicationIdstringSelect a value from the drop down menu.

Trigger Authentication

Curated uses API keys for authentication. When you connect your Curated account, Pipedream securely stores the keys so you can easily authenticate to Curated APIs in both code and no-code steps.

To retrieve your API key,
* Navigate to your Curated account and sign in
* Go to “Account” on the top right > “Account API key”

About Curated

Curated is the quickest and easiest way to publish a digest newsletter by email and also on the web. Collect links, pick the best, add your commentary and publish it to your subscribers.

Action

Description:Write Python and use any of the 350k+ PyPi packages available. Refer to the [Pipedream Python docs](https://pipedream.com/docs/code/python) to learn more.
Version:0.0.2
Key:python-run-python-code

Python Overview

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:

Action Code

import python from "../../python.app.mjs";

export default {
  name: "Run Python Code",
  version: "0.0.2",
  key: "python-run-python-code",
  description: "Write Python and use any of the 350k+ PyPi packages available. Refer to the [Pipedream Python docs](https://pipedream.com/docs/code/python) to learn more.",
  props: {
    python,
  },
  type: "action",
  methods: {},
  async run({
    steps, $,
  }) {
    // Placeholder action for Python code app
  },
};

Action Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI.

LabelPropTypeDescription
PythonpythonappThis component uses the Python app.

Action Authentication

The Python API does not require authentication.

About Python

Anything you can do in Python can be done in a Pipedream Workflow. This includes using any of the 350,000+ PyPi packages available in your Python powered workflows.

More Ways to Connect Python + Curated

Run Python Code with Python API on New Email Subscribed from Curated API
Curated + Python
 
Try it
Run Python Code with Python API on New Issue Published from Curated API
Curated + Python
 
Try it
Run Python Code with Python API on New Link Created from Curated API
Curated + Python
 
Try it
New Email Subscribed from the Curated API

Emit new event when an email is subscribed.

 
Try it
New Email Unsubscribed from the Curated API

Emit new event when an email is unsubscribed.

 
Try it
New Issue Published from the Curated API

Emit new event when a issue is published.

 
Try it
New Link Created from the Curated API

Emit new event when a link is created.

 
Try it
Create Link with the Curated API

Creates a link. See docs here

 
Try it
Run Python Code with the Python API

Write Python and use any of the 350k+ PyPi packages available. Refer to the Pipedream Python docs to learn more.

 
Try it

Explore Other Apps

1
-
0
of
2,500+
apps by most popular