Files
aare/python/example/read_frame.py
2024-03-07 03:09:43 +01:00

7 lines
221 B
Python

from aare import File, Frame
if __name__ == "__main__":
file = File("/home/bb/github/aare/data/jungfrau_single_master_0.json")
frame = file.get_frame(0)
print(frame.rows, frame.cols)
print(frame.get(0,0))