MCPcopy
hub / github.com/HelloZeroNet/ZeroNet / items

Method items

src/Content/ContentDbDict.py:87–96  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

85 yield key, val
86
87 def items(self):
88 back = []
89 for key in dict.keys(self):
90 try:
91 val = self[key]
92 except Exception as err:
93 self.log.warning("Error loading %s: %s" % (key, err))
94 continue
95 back.append((key, val))
96 return back
97
98 def values(self):
99 back = []

Callers 15

updateFunction · 0.80
parseConfigMethod · 0.80
setAttributesMethod · 0.80
actionAnnouncerStatsMethod · 0.80
actionCertSelectMethod · 0.80
actionCertListMethod · 0.80
sendHeaderMethod · 0.80
formatErrorMethod · 0.80
listInstalledPluginsMethod · 0.80
reloadPluginsMethod · 0.80
checkTablesMethod · 0.80
updateJsonMethod · 0.80

Calls

no outgoing calls

Tested by 4

getDbFilesMethod · 0.64
verifyFilesMethod · 0.64
testSignMethod · 0.64