We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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"): ...