Managing Calibration Data: Step-by-Step Guide
Create Branch
Let's start with creating the Branch.

Add Chip
Add a chip to the selected Branch.

Web Platform: Commit Calibration Data
Steps:
Select the Chip for which you are uploading the calibration data from the drop-down
Upload the JSON file only after selecting the Chip from the drop-down. (Only for Web Platform)
Write a Commit Details.
View the Committed Data

Jupyter NoteBook: Commit Calibration Data
Steps:
Get all the Branch Details.
For the selected Branch Get all the Chip Details
Specify Branch, Chip_ID, and Commit Data to upload Calibration File or Object.
View Committed Data
Get the Branch Details and select a specific commit hash
Specified commit hash and view the data
from qubicstorage import calibration
import json
response = calibration.getbranches()
response_json_content = response.json()
response_json_string = json.dumps(response_json_content, indent=4)
print(response_json_string)
Last updated