当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。