Quick start
Large CSV data export
For large datasets that take a long time to export via the UI, Trellis provides an API export feature, allowing you to access the full processed dataset efficiently. You can also use this functionality as a foundation to integrate Trellis with your data store.
1. Create Batch Export Functions
1. Create Batch Export Functions
In this step, we are defining a function to get all the rows in the transformation table as a Json object.
Python
2. Map Json results to a dataframe
2. Map Json results to a dataframe
In this section, we’re mapping the Json object to the data frame format which matches the table view in the UI.
Python
3. Get the full results
3. Get the full results
Python