本文整理匯總了Python中synapseclient.File.externalURL方法的典型用法代碼示例。如果您正苦於以下問題:Python File.externalURL方法的具體用法?Python File.externalURL怎麽用?Python File.externalURL使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類synapseclient.File
的用法示例。
在下文中一共展示了File.externalURL方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_ExternalFileHandle
# 需要導入模塊: from synapseclient import File [as 別名]
# 或者: from synapseclient.File import externalURL [as 別名]
def test_ExternalFileHandle():
# Tests shouldn't have external dependencies, but this is a pretty picture of Singapore
singapore_url = 'http://upload.wikimedia.org/wikipedia/commons/thumb/3/3e/1_singapore_city_skyline_dusk_panorama_2011.jpg/1280px-1_singapore_city_skyline_dusk_panorama_2011.jpg'
singapore = File(singapore_url, parent=project, synapseStore=False)
singapore = syn.store(singapore)
# Verify the file handle
fileHandle = syn._getFileHandle(singapore.dataFileHandleId)
assert fileHandle['concreteType'] == 'org.sagebionetworks.repo.model.file.ExternalFileHandle'
assert fileHandle['externalURL'] == singapore_url
# The download should occur only on the client side
singapore = syn.get(singapore, downloadFile=True)
assert singapore.path is not None
assert singapore.externalURL == singapore_url
assert os.path.exists(singapore.path)
# Update external URL
singapore_2_url = 'https://upload.wikimedia.org/wikipedia/commons/a/a2/Singapore_Panorama_v2.jpg'
singapore.externalURL = singapore_2_url
singapore = syn.store(singapore)
s2 = syn.get(singapore, downloadFile=False)
assert s2.externalURL == singapore_2_url