Get the value for a single key
(self, key: str)
| 68 | core.BNFreeStringList(value, count) |
| 69 | |
| 70 | def get_value(self, key: str) -> databuffer.DataBuffer: |
| 71 | """Get the value for a single key""" |
| 72 | handle = core.BNGetKeyValueStoreBuffer(self.handle, key) |
| 73 | assert handle is not None |
| 74 | return databuffer.DataBuffer(handle=handle) |
| 75 | |
| 76 | def set_value(self, key: str, value: databuffer.DataBuffer): |
| 77 | """Set the value for a single key""" |
no test coverage detected