List stored credentials. Requires v0.4.0+ of the helper.
(self)
| 63 | self._execute('erase', server) |
| 64 | |
| 65 | def list(self): |
| 66 | """ List stored credentials. Requires v0.4.0+ of the helper. |
| 67 | """ |
| 68 | data = self._execute('list', None) |
| 69 | return json.loads(data.decode('utf-8')) |
| 70 | |
| 71 | def _execute(self, subcmd, data_input): |
| 72 | if self.exe is None: |
no test coverage detected