sync get
(table)
| 95 | |
| 96 | |
| 97 | def sync_get(table): |
| 98 | """ sync get """ |
| 99 | print("\nsync get") |
| 100 | try: |
| 101 | print(table.Get("sync", "cf0", "qu0", 0)) |
| 102 | except TeraSdkException as e: |
| 103 | print(e.reason) |
| 104 | if "not found" in e.reason: |
| 105 | pass |
| 106 | else: |
| 107 | return |
| 108 | |
| 109 | |
| 110 | def sync_put_batch(table): |