示例#1
0
文件: csv.py 项目: helixyte/everest
 def __is_link(self, value):
     return isinstance(value, string_types) and is_resource_url(value)
示例#2
0
文件: json.py 项目: helixyte/everest
 def _is_link_node(self, node, attr): # pylint: disable=W0613
     return isinstance(node, string_types) and is_resource_url(node)
示例#3
0
文件: csv.py 项目: papagr/everest
 def __is_link(self, value):
     return isinstance(value, string_types) and is_resource_url(value)
示例#4
0
文件: json.py 项目: papagr/everest
 def _is_link_node(self, node, attr):  # pylint: disable=W0613
     return isinstance(node, string_types) and is_resource_url(node)
示例#5
0
 def __is_link(self, value):
     return isinstance(value, basestring) and is_resource_url(value)