本文整理汇总了Python中leancloud.File.create_with_url方法的典型用法代码示例。如果您正苦于以下问题:Python File.create_with_url方法的具体用法?Python File.create_with_url怎么用?Python File.create_with_url使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类leancloud.File
的用法示例。
在下文中一共展示了File.create_with_url方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_thumbnail_url_erorr
# 需要导入模块: from leancloud import File [as 别名]
# 或者: from leancloud.File import create_with_url [as 别名]
def test_thumbnail_url_erorr():
f = File.create_with_url('xx', False)
f.get_thumbnail_url(100, 100)
示例2: test_save_external
# 需要导入模块: from leancloud import File [as 别名]
# 或者: from leancloud.File import create_with_url [as 别名]
def test_save_external():
f = File.create_with_url('lenna.jpg', 'http://i1.wp.com/leancloud.cn/images/static/default-avatar.png')
f.save()
assert f.id
示例3: test_create_with_url
# 需要导入模块: from leancloud import File [as 别名]
# 或者: from leancloud.File import create_with_url [as 别名]
def test_create_with_url():
f = File.create_with_url('xxx', 'http://i1.wp.com/leancloud.cn/images/static/default-avatar.png', meta_data={})
assert f.url == 'http://i1.wp.com/leancloud.cn/images/static/default-avatar.png'
示例4: test_thumbnail_url_erorr
# 需要导入模块: from leancloud import File [as 别名]
# 或者: from leancloud.File import create_with_url [as 别名]
def test_thumbnail_url_erorr(): # type: () -> None
f = File.create_with_url('xx', '')
f.get_thumbnail_url(100, 100)