當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python distributed.Client.upload_file用法及代碼示例


用法:

upload_file(filename, **kwargs)

將本地包上傳到工作人員

這會將本地文件發送到所有工作節點。該文件放置在 Python 係統路徑上的臨時目錄中,因此任何 .py、.egg 或 .zip 文件都可以導入。

參數

filenamestring

要發送給工作人員的 .py、.egg 或 .zip 文件的文件名

**kwargsdict

函數的可選關鍵字參數

例子

>>> client.upload_file('mylibrary.egg')  
>>> from mylibrary import myfunc  
>>> L = client.map(myfunc, seq)

相關用法


注:本文由純淨天空篩選整理自dask.org大神的英文原創作品 distributed.Client.upload_file。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。