Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 371 Bytes

File metadata and controls

18 lines (12 loc) · 371 Bytes

pyaleparser

Yet another python library to read from and write to the ALE (Avid Log Exchange) format.

Development is ongoing an currently unstable. But if you want to give it a shot, be my guest!

from aleparser import Ale

ale = Ale.from_path("MU001.ale")

print(ale.heading)
print(ale.columns)
print(ale.events)

ale.to_path("MU001_processed.ale")