Skip to content

Pypact-1.2.0

Compare
Choose a tag to compare
@thomasms thomasms released this 03 Apr 08:57

New API makes it easier to use pypact.

It used to be like this

from pypact.reader import Reader

output = Reader()("output_file.out")
...

Now it is simpler with

import pypact as pp

with pp.Reader("output_file.out"):
    ...