本文整理汇总了Python中thumbor.url.Url.parse_options方法的典型用法代码示例。如果您正苦于以下问题:Python Url.parse_options方法的具体用法?Python Url.parse_options怎么用?Python Url.parse_options使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类thumbor.url.Url
的用法示例。
在下文中一共展示了Url.parse_options方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_parse_urls_without_image
# 需要导入模块: from thumbor.url import Url [as 别名]
# 或者: from thumbor.url.Url import parse_options [as 别名]
def test_parse_urls_without_image():
options = Url.parse_options("unsafe/meta/10x11:12x13/-300x-200/left/top/smart/")
assert options
options = Url.parse_options("/unsafe/meta/10x11:12x13/-300x-200/left/top/smart/")
assert options
assert options['meta'] == True
assert options['crop']['left'] == 10
assert options['crop']['top'] == 11
assert options['crop']['right'] == 12
assert options['crop']['bottom'] == 13
assert options['width'] == 300
assert options['height'] == 200
assert options['horizontal_flip'] == True
assert options['vertical_flip'] == True
assert options['halign'] == 'left'
assert options['valign'] == 'top'
assert options['smart'] == True
示例2: topic
# 需要导入模块: from thumbor.url import Url [as 别名]
# 或者: from thumbor.url.Url import parse_options [as 别名]
def topic(self):
return Url.parse_options('/unsafe/meta/10x11:12x13/fit-in/-300x-200/left/top/smart/filters:some_filter()/')
示例3: test_parse_urls_without_result
# 需要导入模块: from thumbor.url import Url [as 别名]
# 或者: from thumbor.url.Url import parse_options [as 别名]
def test_parse_urls_without_result():
options = Url.parse_options("some fake url")
assert not options