(name)
| 70 | |
| 71 | |
| 72 | def create_transaction(name): |
| 73 | url = f"{client.base_url}/collections/{name}/transactions" |
| 74 | response = requests.post(url, headers=client._get_headers(), verify=client.verify_ssl) |
| 75 | if response.status_code not in [200, 201]: |
| 76 | raise Exception(f"Failed to create transaction: {response.text}") |
| 77 | return response.json()["transaction_id"] |
| 78 | |
| 79 | def commit_transaction(name, txn_id): |
| 80 | url = f"{client.base_url}/collections/{name}/transactions/{txn_id}/commit" |