Metadata-Version: 2.1
Name: PySIO
Version: 0.1.1
Summary: Parser for SLAC\'s Serial Input Output file format.
Home-page: https://github.com/kkrizka/PySIO
Author: Karol Krizka
Author-email: kkrizka@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE

PySIO allows reading of SLAC's Serial Input Output format inside Python.

Only the reading of record headers are currently supported. The block payload is stored as (compressed) raw data.

## Example
To iterate over all records in a file and print the record name:

```python
import sio

fileName='muonGun_sim_MuColl_v1.slcio'
for record in sio.read_sio(fileName):
    print(record.name)
```





