本文整理汇总了Python中suds.xsd.query.BlindQuery.execute方法的典型用法代码示例。如果您正苦于以下问题:Python BlindQuery.execute方法的具体用法?Python BlindQuery.execute怎么用?Python BlindQuery.execute使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类suds.xsd.query.BlindQuery
的用法示例。
在下文中一共展示了BlindQuery.execute方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: query
# 需要导入模块: from suds.xsd.query import BlindQuery [as 别名]
# 或者: from suds.xsd.query.BlindQuery import execute [as 别名]
def query(self, name, node):
"""Blindly query the schema by name."""
log.debug('searching schema for (%s)', name)
qref = qualify(name, node, node.namespace())
query = BlindQuery(qref)
result = query.execute(self.schema)
return (result, [])
示例2: known
# 需要导入模块: from suds.xsd.query import BlindQuery [as 别名]
# 或者: from suds.xsd.query.BlindQuery import execute [as 别名]
def known(self, node):
"""Resolve type referenced by @xsi:type."""
ref = node.get('type', Namespace.xsins)
if ref is None:
return None
qref = qualify(ref, node, node.namespace())
query = BlindQuery(qref)
return query.execute(self.schema)
示例3: root
# 需要导入模块: from suds.xsd.query import BlindQuery [as 别名]
# 或者: from suds.xsd.query.BlindQuery import execute [as 别名]
def root(self, parts):
"""
Find the path root.
@param parts: A list of path parts.
@type parts: [str,..]
@return: The root.
@rtype: L{xsd.sxbase.SchemaObject}
"""
result = None
name = parts[0]
log.debug('searching schema for (%s)', name)
qref = self.qualify(parts[0])
query = BlindQuery(qref)
result = query.execute(self.schema)
if result is None:
log.error('(%s) not-found', name)
raise PathResolver.BadPath(name)
log.debug('found (%s) as (%s)', name, Repr(result))
return result
示例4: find
# 需要导入模块: from suds.xsd.query import BlindQuery [as 别名]
# 或者: from suds.xsd.query.BlindQuery import execute [as 别名]
def find(self, name, resolved=True):
"""
Get the definition object for the schema object by name.
@param name: The name of a schema object.
@type name: basestring
@param resolved: A flag indicating that the fully resolved type
should be returned.
@type resolved: boolean
@return: The found schema I{type}
@rtype: L{xsd.sxbase.SchemaObject}
"""
log.debug('searching schema for (%s)', name)
qref = qualify(name, self.schema.root, self.schema.tns)
query = BlindQuery(qref)
result = query.execute(self.schema)
if result is None:
log.error('(%s) not-found', name)
return None
log.debug('found (%s) as (%s)', name, Repr(result))
if resolved:
result = result.resolve()
return result
示例5: known
# 需要导入模块: from suds.xsd.query import BlindQuery [as 别名]
# 或者: from suds.xsd.query.BlindQuery import execute [as 别名]
def known(self, node):
""" resolve type referenced by @xsi:type """
ref = node.get("type", Namespace.xsins)
if ref is None:
return None
qref = qualify(ref, node, node.namespace())
# Originally, this always created a BlindQuery for the qref name so
# that the schema was always searched. We assume that the schema does
# not change while unserializing and cache the query results here.
try:
lookup_cache = self.schema.NodeResolver__known_cache
except AttributeError:
lookup_cache = self.schema.NodeResolver__known_cache = {}
try:
return lookup_cache[qref]
except KeyError:
query = BlindQuery(qref)
r = query.execute(self.schema)
if r is not None:
lookup_cache[qref] = r
return r