List all tables. Returns: List of table names
(self)
| 299 | self._execute(STASH_OP_DELETE_TABLE, table) |
| 300 | |
| 301 | def tables(self): |
| 302 | """ |
| 303 | List all tables. |
| 304 | |
| 305 | Returns: |
| 306 | List of table names |
| 307 | """ |
| 308 | return self._execute(STASH_OP_TABLES, "") |
| 309 | |
| 310 | def table(self, name): |
| 311 | """ |