tensorstore.KvStore.__repr__(self) str

Returns a string representation based on the JSON representation.

Example

>>> kvstore = await ts.KvStore.open({
...     'driver': 'file',
...     'path': 'tmp/data/'
... })
>>> kvstore
KvStore({
  'context': {'file_io_concurrency': {}, 'file_io_sync': True},
  'driver': 'file',
  'path': 'tmp/data/',
})