Variable-length Attributes in Python

Hello - I am new to TileDB but I am starting to enjoy it :slight_smile:

When will Variable-length Attributes be available in the Python API?

Variable-length attributes are available โ€“ I will update that doc. Object arrays (np.dtype("O") / np.object) can contain variable-length subarrays as elements. If something doesnโ€™t work the way you hope, please let us know here or on github. There are a number of examples in the following test section:

(btw, NumPy tries very hard to keep arrays contiguous, so it can sometimes be tricky to maintain the object dtype when operating on an array)

Thank you so much! Will try it!