Get a dict-like interface to a table. Args: name: Table name Returns: StashTable instance
(self, name)
| 308 | return self._execute(STASH_OP_TABLES, "") |
| 309 | |
| 310 | def table(self, name): |
| 311 | """ |
| 312 | Get a dict-like interface to a table. |
| 313 | |
| 314 | Args: |
| 315 | name: Table name |
| 316 | |
| 317 | Returns: |
| 318 | StashTable instance |
| 319 | """ |
| 320 | return StashTable(self, name) |
| 321 | |
| 322 | def close(self): |
| 323 | """Close the client connection.""" |