class Files
A lazy iterator over a collection of File objects.
Access and manage files uploaded to W&B during a run. Handles pagination automatically when iterating through large collections of files.
Example:
method Files.__init__
File objects.
Files are retrieved in pages from the W&B server as needed.
Args:
client: The run object that contains the filesrun: The run object that contains the filesnames(list, optional): A list of file names to filter the filesper_page(int, optional): The number of files to fetch per pageupload(bool, optional): IfTrue, fetch the upload URL for each filepattern(str, optional): Pattern to match when returning files from W&B This pattern uses mySQL’s LIKE syntax, so matching all files that end with .json would be “%.json”. If both names and pattern are provided, a ValueError will be raised.