用法:
dask.bag.from_url(urls)
从 url 创建一个 dask Bag。
例子:
>>> a = from_url('http://raw.githubusercontent.com/dask/dask/main/README.rst') >>> a.npartitions 1
>>> a.take(8) (b'Dask\n', b'====\n', b'\n', b'|Build Status| |Coverage| |Doc Status| |Discourse| |Version Status| |NumFOCUS|\n', b'\n', b'Dask is a flexible parallel computing library for analytics. See\n', b'documentation_ for more information.\n', b'\n')
>>> b = from_url(['http://github.com', 'http://google.com']) >>> b.npartitions 2
相关用法
- Python dask.bag.from_sequence用法及代码示例
- Python dask.bag.from_delayed用法及代码示例
- Python dask.bag.Bag.frequencies用法及代码示例
- Python dask.bag.Bag.to_textfiles用法及代码示例
- Python dask.bag.Bag.repartition用法及代码示例
- Python dask.bag.Bag.join用法及代码示例
- Python dask.bag.Bag.accumulate用法及代码示例
- Python dask.bag.Bag.fold用法及代码示例
- Python dask.bag.Bag.map_partitions用法及代码示例
- Python dask.bag.Bag.groupby用法及代码示例
- Python dask.bag.map用法及代码示例
- Python dask.bag.Bag.reduction用法及代码示例
- Python dask.bag.Bag.foldby用法及代码示例
- Python dask.bag.range用法及代码示例
- Python dask.bag.Bag.flatten用法及代码示例
- Python dask.bag.random.sample用法及代码示例
- Python dask.bag.Bag.remove用法及代码示例
- Python dask.bag.Bag.random_sample用法及代码示例
- Python dask.bag.random.choices用法及代码示例
- Python dask.bag.Item.visualize用法及代码示例
注:本文由纯净天空筛选整理自dask.org大神的英文原创作品 dask.bag.from_url。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。