StreamInfoUrl#

class servicex.servicex.StreamInfoUrl(file: str, url: str, bucket: str)[source]#

Bases: StreamInfoBase

Contains information about results that are streamed back from ServiceX. Used when a URL to access the data directly from ServiceX is requested.

__init__(file: str, url: str, bucket: str)[source]#

Attributes

bucket#

Returns the buck name - unique and constant across transformations. Can be used to order the results

Returns:

str: The bucket name as produced by ServiceX

file#

Returns the ServiceX filename

This filename is unique in the dataset, and will be the same across different queries against the dataset. It can be used as a key to sort results.

Notes:

  • May contains non-file system characters

Returns:

str: servicex filename

url#

URL that can can be used to stream data back from ServiceX.

Returns:

str: The URL of the transformed data for this file.

Methods