Long-Term Monitor Data Management: A User Manual
Upload Experiment Data:
Steps:
We are using MongoDB here hence we are not creating the Branches here.
In order to upload Experiment Data you have to upload a file that follows this format.
X4Y2.data.json -> chip_name.data.json
We will extract chip_name from the file_name.
In, Jupyter NoteBook you can upload experiment data in 2 ways.
File Upload
Object Upload

from qubicstorage import experiment
import json
file_path = 'X4Y2.data.json'
response = experiment.insertbyfile(file_path)
response_json_content = response.json()
response_json_string = json.dumps(response_json_content, indent=4)
print(response_json_string)View Experiment Data:

Last updated