- tensorstore.KvStore.__truediv__(self, component: str) KvStore
Returns a key-value store with an additional path component joined to the path.
Example
>>> store = await ts.KvStore.open({'driver': 'file', 'path': 'tmp/data'}) >>> store / 'abc' KvStore({ 'context': { 'file_io_concurrency': {}, 'file_io_locking': {}, 'file_io_memmap': False, 'file_io_sync': True, }, 'driver': 'file', 'path': 'tmp/data/abc', }) >>> store / '/abc' KvStore({ 'context': { 'file_io_concurrency': {}, 'file_io_locking': {}, 'file_io_memmap': False, 'file_io_sync': True, }, 'driver': 'file', 'path': 'tmp/data/abc', })