David Sturgis

Writing Transforms in Python - Part 5

Working with Strings in Python - Python has a lot of useful features built into its data types, as we’ve seen with our record dictionaries, but strings (text values) can do a lot for us as well.

Writing Transforms in Python - Part 4

Removing Fields from a Record - There are two main ways to remove a field from a Record… Or three, if we count simply clearing out the value.

Writing Transforms in Python - Part 3

Writing to Records - There are a few different ways that we can modify an existing record, to add a new field and value, change the value on an existing field, or remove a field entirely.

Writing Transforms in Python - Part 2

Reading from Records - There are two main ways to access the individual values (or “fields”) of a Record: Indexing and the get() Method.

Writing Transforms in Python - Part 1

The Default Transform & Working with Records - Matterbeam allows you to write your own Transformation steps in Python: Functional units of code that will be run on individual records.