Python
Python SDK
Learn how to integrate using the Python SDK
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.