本文整理匯總了Python中numpy.lib._datasource.Repository方法的典型用法代碼示例。如果您正苦於以下問題:Python _datasource.Repository方法的具體用法?Python _datasource.Repository怎麽用?Python _datasource.Repository使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類numpy.lib._datasource
的用法示例。
在下文中一共展示了_datasource.Repository方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: setup
# 需要導入模塊: from numpy.lib import _datasource [as 別名]
# 或者: from numpy.lib._datasource import Repository [as 別名]
def setup(self):
self.tmpdir = os.path.abspath(mkdtemp())
self.repos = datasource.Repository(valid_baseurl(), self.tmpdir)
示例2: test_CachedHTTPFile
# 需要導入模塊: from numpy.lib import _datasource [as 別名]
# 或者: from numpy.lib._datasource import Repository [as 別名]
def test_CachedHTTPFile(self):
localfile = valid_httpurl()
# Create a locally cached temp file with an URL based
# directory structure. This is similar to what Repository.open
# would do.
scheme, netloc, upath, pms, qry, frg = urlparse(localfile)
local_path = os.path.join(self.repos._destpath, netloc)
os.mkdir(local_path, 0o0700)
tmpfile = valid_textfile(local_path)
assert_(self.repos.exists(tmpfile))
示例3: setUp
# 需要導入模塊: from numpy.lib import _datasource [as 別名]
# 或者: from numpy.lib._datasource import Repository [as 別名]
def setUp(self):
self.tmpdir = os.path.abspath(mkdtemp())
self.repos = datasource.Repository(valid_baseurl(), self.tmpdir)