pypair icon indicating copy to clipboard operation
pypair copied to clipboard

PyPair is a python library for pairing rounds of a swiss tournament

Results 3 pypair issues
Sort by recently updated
recently updated
newest added

If you set the following. ``` winPoints = 1 drawPoints = 0.5 ``` and run test.py, there is an issue. ``` Traceback (most recent call last): File "F:\Github\pypair\test.py", line 42,...

Does pypair considers player color in pairing?

In one of the samples there's the code: ``` to.reportMatch(table, [2,0,0]) elif per < 47: to.reportMatch(table, [2,1,0]) elif per < 60: to.reportMatch(table, [0,2,0]) elif per < 97: to.reportMatch(table, [1,2,0]) elif...