I'm trying to unpickle a blob column called "rules". The problem is that I don't know what the data type of the output is, and I think that's what's causing my error. If I do a SELECT on the column, an example value is:
"x?u??J?0?I?Az?9???YOp??5t?&??n,??#?:t????n????wbB?HAh??" (and so on)
I'm trying to unpickle it in python with:
rules_dict = cPickle.loads(rules)
And I get the following error:
"cPickle.UnpicklingError: invalid load key, 'x'"
Obviously 'x' is what's at the beginning of the column, so I should be doing this a different way..just not sure how. I'm not really sure where to go from here. Thanks!