MCPcopy Create free account
hub / github.com/ActiveState/code / find

Method find

recipes/Python/576445_ElementTree_Wrapper/recipe-576445.py:182–184  ·  view source on GitHub ↗
(self,path)

Source from the content-addressed store, hash-verified

180 def navlist(self,*tag_list):
181 return self.findall(self.__path_from_list(tag_list))
182 def find(self,path):
183 elt = self.__content.find(path)
184 return xml(elt) if elt != None else None
185 def findall(self,path):
186 return [xml(elt) for elt in self.__content.findall(path)]
187 def join(self,iterable):

Callers 15

navMethod · 0.95
find_allFunction · 0.45
recipe-576541.pyFile · 0.45
makeDictFunction · 0.45
xml2dictFunction · 0.45
detachFileMethod · 0.45
convertToHumanReadableFunction · 0.45
BluetoothScanFunction · 0.45
recipe-576605.pyFile · 0.45
getNewNameFunction · 0.45
dotMethod · 0.45
get_company_idFunction · 0.45

Calls 1

xmlClass · 0.70

Tested by

no test coverage detected