MCPcopy Create free account
hub / github.com/WebODM/WebODM / get_string

Method get_string

app/plugins/data_store.py:39–40  ·  view source on GitHub ↗
(self, key, default="")

Source from the content-addressed store, hash-verified

37 return default if datum is None else getattr(datum, type + '_value')
38
39 def get_string(self, key, default=""):
40 return self.get_value('string', key, default)
41
42 def set_string(self, key, value):
43 return self.set_value('string', key, value)

Callers 11

configFunction · 0.80
homeMethod · 0.80
get_settingsFunction · 0.80
mainMethod · 0.80
main_jsMethod · 0.80
viewFunction · 0.80
loadFunction · 0.80
postMethod · 0.80
HandleShortLinkFunction · 0.80
shortlinks_cleanupFunction · 0.80
test_plugin_datastoreMethod · 0.80

Calls 1

get_valueMethod · 0.95

Tested by 1

test_plugin_datastoreMethod · 0.64