Important: This documentation refers to an older version of the Python SDK (v0.x). A new major version (v5.0.0) is now available with significant improvements and breaking changes on Typescript, and we will slowly roll out python.. Please contact support to get access to the latest version.

The Lume Python Client Library is currently in beta. Please reach out to support if you have any questions, encounter any bugs, or have any feature requests.

Install

Download the SDK using pip.

Quickstart

Retrieve your input data and target schema.

targetSchema = {
    type: "object",
    properties: {
        f_name: {
            type: "string",
            description: "The first name of the user",
        },
        l_name: {
            type: "string",
            description: "The last name of the user",
        },
    },
    required: ["f_name", "l_name"],
}

sourceData = [
    { first_name: "John", last_name: "Doe" },
    { first_name: "Jane", last_name: "Smith" }
]

Create a new pipeline and map data.

Usage

Refer to the Python SDK’s Methods and Classes for more information.

Issues / Questions

Please reach out to support if you encounter any bugs, have any questions, or have feature requests.