当前位置: 首页>>代码示例>>Python>>正文


Python File.create_with_url方法代码示例

本文整理汇总了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)
开发者ID:lord63-forks,项目名称:python-sdk,代码行数:5,代码来源:test_file.py

示例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
开发者ID:lord63-forks,项目名称:python-sdk,代码行数:6,代码来源:test_file.py

示例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'
开发者ID:lord63-forks,项目名称:python-sdk,代码行数:5,代码来源:test_file.py

示例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)
开发者ID:leancloud,项目名称:python-sdk,代码行数:5,代码来源:test_file.py


注:本文中的leancloud.File.create_with_url方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。