tensorstore.Spec.url : str

URL representation of the TensorStore specification.

Example

>>> spec = ts.Spec({
...     'driver': 'n5',
...     'kvstore': {
...         'driver': 'gcs',
...         'bucket': 'my-bucket',
...         'path': 'path/to/array/'
...     }
... })
>>> spec.url
'gs://my-bucket/path/to/array/|n5:'