We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
37fc925
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"): ...