Error storing a pickled object to database

Hi,

Thanks for the response.

I don’t have a minimal example handy yet, but the object I’ve split out looks like this:

class TLFactoryDataObject:
    def __init__(self):
        self.default_event = {}
        self.tl_factory_out = {'events':[]}
        self.tl_csv_out = []
        self.config_filename = ''
        self.config_ds_group_key = []           
        self.config_ds_group_label = []
        self.factory_status = ''
        self.tl_grid_columns = []
        self.tl_grid_data = []

I’m thinking that to use.json.dumps it would all have to be a single dict, correct?

Thanks!