tensorstore.KvStore.Spec.__truediv__(self, component: str) KvStore.Spec

Returns a key-value store with an additional path component joined to the path.

Example

>>> spec = ts.KvStore.Spec({'driver': 'file', 'path': 'tmp/data'})
>>> spec / 'abc'
KvStore.Spec({'driver': 'file', 'path': 'tmp/data/abc'})
>>> spec / '/abc'
KvStore.Spec({'driver': 'file', 'path': 'tmp/data/abc'})