メインコンテンツへスキップ

Documentation Index

Fetch the complete documentation index at: https://wb-21fd5541-john-wbdocs-2044-rename-serverless-products.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

class DownloadHistoryResult

run の history エクスポートをダウンロードした結果。 属性:
  • paths: ダウンロードされた history ファイルのパス。
  • errors: ダウンロードに失敗したファイルについて、ファイルパスをエラーメッセージに対応付けた辞書。すべてのダウンロードが成功した場合は None。
  • contains_live_data: run に、まだ parquet ファイルにエクスポートされていないライブデータが含まれているかどうか。

method DownloadHistoryResult.__init__

__init__(
    paths: 'list[pathlib.Path]',
    contains_live_data: 'bool',
    errors: 'dict[pathlib.Path, str] | None' = None
) → None