numpy.DataSource

原文:https://docs.scipy.org/doc/numpy/reference/generated/numpy.DataSource.html

译者:飞龙 UsyiyiCN

校对:(虚位以待)

class numpy.DataSource(destpath='.')[source]

通用数据源文件(文件,http,ftp,...)。

DataSources可以是本地文件或远程文件/ URL。文件也可以是压缩或未压缩的。DataSource隐藏了下载文件的一些低级细节,允许你简单地传递一个有效的文件路径(或URL)并获取一个文件对象。

参数:

destpath:str或None,可选

下载源文件以供使用的目录的路径。如果destpath为None,将创建一个临时目录。默认路径是当前目录。

笔记

网址需要使用方案字符串(http://),否则它们将失败:

>>> repos = DataSource()
>>> repos.exists('www.google.com/index.html')
False
>>> repos.exists('http://www.google.com/index.html')
True

删除DataSource时,将删除临时目录。

例子

>>> ds = DataSource('/home/guido')
>>> urlname = 'http://www.google.com/index.html'
>>> gfile = ds.open('http://www.google.com/index.html')  # remote file
>>> ds.abspath(urlname)
'/home/guido/www.google.com/site/index.html'

>>> ds = DataSource(None)  # use with temporary file
>>> ds.open('/home/guido/foobar.txt')
<open file '/home/guido.foobar.txt', mode 'r' at 0x91d4430>
>>> ds.abspath('/home/guido/foobar.txt')
'/tmp/tmpy4pgsP/home/guido/foobar.txt'

方法

abspath(path) 返回DataSource目录中文件的绝对路径。
exists(路径) 测试路径是否存在。
open(路径[,模式]) 打开并返回类似文件的对象。