Installation ------------ - clone this repository - change directory to folder `stormpci_bin_reader` - run shell command `pip install .` Test call --------- Need binary file from new LDN system for tests. ```python from stormpci_bin_reader import BlockReader br = BlockReader("2022-04-23-00:00:37.bin") blocks = br.read_all_blocks() for block in blocks: print(block) ```