Is it possible to store boolean values?
I tried storing a True value in BigTable, and got the error message:
TypeError: True could not be converted to bytes
Looking at the code in GitHub, the function _to_bytes was used, and it throws an error if it cannot be converted to bytes.
Is there a recommended way to store boolean data? Or should I just cast True/False and then remember to convert the values back to Boolean when I retrieve the data?