MCPcopy Create free account
hub / github.com/Keeper-Security/Commander / get

Method get

keepercommander/record.py:167–173  ·  view source on GitHub ↗
(self, field)

Source from the content-addressed store, hash-verified

165 self.revision = kwargs['revision']
166
167 def get(self, field):
168 result = ''
169 for c in self.custom_fields:
170 if (c['name'] == field):
171 result = c['value']
172 break
173 return result
174
175 def append_field_value(self, name, value):
176 if not value:

Calls

no outgoing calls