src.core
DataExport
Namespace for data export constants and enums.
Format
Bases: Enum
Enum for export formats.
Target
Bases: Enum
Enum for export targets.
Log
Handles logging messages with different severity levels.
LogEntry
LogEntry(msg, level)
Represents a single log entry.
Initializes a LogEntry.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
msg
|
The log message. |
required | |
level
|
The severity level of the log. |
required |
Source code in src/core.py
464 465 466 467 468 469 470 471 472 | |
export
classmethod
export(fpath)
Exports the log to a file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
fpath
|
The file path to export to. |
required |
Source code in src/core.py
514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 | |
log
classmethod
log(str_log, level=Level.NONE)
Logs a message with a specified level.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
str_log
|
The message to log. |
required | |
level
|
The severity level (default: Level.NONE). |
NONE
|
Source code in src/core.py
493 494 495 496 497 498 499 500 501 502 503 504 505 506 | |
print
classmethod
print()
Prints all log entries to the console.
Source code in src/core.py
508 509 510 511 512 | |
Player
Player(tour: Tournament, name: str, uid: UUID | None = None, decklist: str | None = None)
Bases: IPlayer
Represents a player in the tournament.
Attributes:
| Name | Type | Description |
|---|---|---|
SORT_METHOD |
SortMethod
|
The method used for sorting players (ID, Name, Rank). |
SORT_ORDER |
SortOrder
|
The order used for sorting (Ascending, Descending). |
CACHE |
dict[UUID, Player]
|
Global cache of player instances. |
Initializes a new Player instance.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tour
|
Tournament
|
The tournament the player belongs to. |
required |
name
|
str
|
The name of the player. |
required |
uid
|
UUID | None
|
The unique identifier for the player. If None, a new UUID is generated. |
None
|
decklist
|
str | None
|
Optional URL or string representing the player's decklist. |
None
|
Source code in src/core.py
2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 | |
average_seat
average_seat(rounds: list[Round]) -> np.float64
Expressed in percentage. In a 4 pod game: seat 0: 100% seat 1: 66.66% seat 2: 33.33% seat 3: 0% In a 3 pod game: seat 0: 100% seat 1: 50% seat 2: 0%
Higher percentage means better seats, statistically. In subsequent matching attempts, these will get lower priority on early seats.
We are now using a weighted average of all the pods the player has been in. Weights are based on TC.global_wr_seats
Source code in src/core.py
2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 | |
byes
byes(tour_round: Round | None = None)
Counts the number of byes received.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tour_round
|
Round | None
|
The round up to which to count. |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
int |
The number of byes. |
Source code in src/core.py
2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 | |
draws
draws(tour_round: Round | None = None)
Counts the number of draws.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tour_round
|
Round | None
|
The round up to which to count. |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
int |
The number of draws. |
Source code in src/core.py
2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 | |
games
games(tour_round: Round | None = None)
Retrieves all completed games (pods) excluding byes and other non-game locations.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tour_round
|
Round | None
|
The round up to which to check. |
None
|
Returns:
| Type | Description |
|---|---|
|
list[Pod]: A list of actual completed game pods. |
Source code in src/core.py
2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 | |
losses
losses(tour_round: Round | None = None)
Counts the number of losses.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tour_round
|
Round | None
|
The round up to which to count. |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
int |
The number of losses. |
Source code in src/core.py
2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 | |
played
played(tour_round: IRound | None = None) -> list[IPlayer]
Retrieves a list of unique opponents played against in completed pods.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tour_round
|
IRound | None
|
The round up to which to check. |
None
|
Returns:
| Type | Description |
|---|---|
list[IPlayer]
|
list[Player]: A list of unique opponents. |
Source code in src/core.py
2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 | |
pods
pods(tour_round: IRound | None = None) -> list[IPod | Player.ELocation]
Retrieves all pods or locations the player has been assigned to.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tour_round
|
IRound | None
|
The round up to which to include pods. |
None
|
Returns:
| Type | Description |
|---|---|
list[IPod | ELocation]
|
list[Pod|Player.ELocation]: A list of pods or location markers (e.g. BYE). |
Source code in src/core.py
2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 | |
pointrate
pointrate(tour_round: Round | None = None) -> float
Calculates the point rate (actual points / maximum possible points).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tour_round
|
Round | None
|
The round up to which to calculate. |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
float |
float
|
The point rate. |
Source code in src/core.py
2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 | |
rating
rating(tour_round: Round | None) -> float
Calculates the player's rating (win percentage) up to a specific round.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tour_round
|
Round | None
|
The round up to which to calculate rating. If None, uses current round. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
float |
float
|
The rating as a decimal (0.0 to 1.0). |
Source code in src/core.py
2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 | |
record
record(tour_round: Round | None = None) -> list[Player.EResult]
Retrieves the full history of results.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tour_round
|
Round | None
|
The round up to which to retrieve the record. |
None
|
Returns:
| Type | Description |
|---|---|
list[EResult]
|
list[Player.EResult]: A chronological list of results. |
Source code in src/core.py
2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 | |
result
result(tour_round: Round) -> Player.EResult
Retrieves the player's result for a specific round.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tour_round
|
Round
|
The round to query. |
required |
Returns:
| Type | Description |
|---|---|
EResult
|
Player.EResult: The result (WIN, LOSS, DRAW, BYE, PENDING). |
Source code in src/core.py
2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 | |
seat_history
seat_history(tour_round: Round | None = None) -> str
Generates a string representation of the player's seat history.
Format: "seat/pod_size" for each round.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tour_round
|
Round | None
|
The round up to which to generate history. |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
str |
str
|
The seat history string. |
Source code in src/core.py
2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 | |
set_result
set_result(tour_round: Round, result: EResult) -> None
Sets the result for the player in a specific round.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tour_round
|
Round
|
The round where the result occurred. |
required |
result
|
EResult
|
The result to set (WIN, LOSS, DRAW, BYE). |
required |
Source code in src/core.py
2052 2053 2054 2055 2056 2057 2058 2059 | |
wins
wins(tour_round: Round | None = None)
Counts the number of wins.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tour_round
|
Round | None
|
The round up to which to count. |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
int |
The number of wins. |
Source code in src/core.py
2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 | |
Pod
Pod(tour_round: Round, table: int, cap=0, uid: UUID | None = None)
Bases: IPod
Represents a single pod (table) in a round.
Attributes:
| Name | Type | Description |
|---|---|---|
table |
int
|
The table number. |
cap |
int
|
The capacity of the pod (maximum number of players). |
_players |
list[UUID]
|
List of player UUIDs in the pod. |
Initializes a new Pod instance.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tour_round
|
Round
|
The round the pod belongs to. |
required |
table
|
int
|
The table number. |
required |
cap
|
The player capacity of the pod. |
0
|
|
uid
|
UUID | None
|
Optional UUID. |
None
|
Source code in src/core.py
2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 | |
balance
property
balance: ndarray
Returns a list of count of players above 50% average seat and below 50% average seat
name
property
name
Returns the name of the pod. The name of the pod is "Pod {}".format(self.table).
players
property
players: list[Player]
Returns the list of players in the pod.
result
property
result: set[Player]
Retrieves the players involved in the result of the pod (e.g., winners or drawers).
Returns:
| Type | Description |
|---|---|
set[Player]
|
set[Player]: A set of players. |
table
property
table: int
Returns the table number of the pod. The table number is determined by the pod's index in the round's pod list (+1).
add_player
add_player(player: Player, manual=False, player_pod_map=None) -> bool
Adds a player to the pod.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
player
|
Player
|
The player to add. |
required |
manual
|
If True, allows exceeding the pod's capacity. |
False
|
|
player_pod_map
|
Optional map to update player locations (internal use). |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
bool |
bool
|
True if the player was added, False otherwise (e.g., if full and not manual). |
Source code in src/core.py
2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 | |
auto_assign_seats
auto_assign_seats()
Assigns seats to players in the pod.
Seat assignment attempts to balance seating positions based on players' history, giving preference to players who have had poor seat variance in the past.
Source code in src/core.py
2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 | |
clear
clear()
Clears the pod of all players. This method is called by the round when the pod is removed.
Source code in src/core.py
2824 2825 2826 2827 2828 2829 2830 | |
reorder_players
reorder_players(order: list[int]) -> None
Reorders the players in the pod. Passing range(len(self._players)) will result no change in the order. Passing [0, 1, 2, 3] will result no change in the order. Passing [3, 2, 1, 0] will reverse the order of the players.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
order
|
list[int]
|
A list of integers representing the new order of the players. |
required |
Source code in src/core.py
2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 | |
PodsExport
Bases: DataExport
Handles the export of tournament pods.
auto_export
classmethod
auto_export(func: _F) -> _F
Decorator to automatically export pods after a function call.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
func
|
_F
|
The function to decorate. |
required |
Returns:
| Type | Description |
|---|---|
_F
|
The decorated function. |
Source code in src/core.py
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 | |
Round
Round(tour: Tournament, seq: int, stage: Stage, pairing_logic: IPairingLogic, uid: UUID | None = None, dropped: set[UUID] | None = None, disabled: set[UUID] | None = None, byes: set[UUID] | None = None, game_loss: set[UUID] | None = None)
Bases: IRound
Represents a single round in the tournament.
Attributes:
| Name | Type | Description |
|---|---|---|
seq |
int
|
The sequence number of the round (0-indexed). |
stage |
Stage
|
The stage of the round (Swiss, Top X). |
logic |
IPairingLogic
|
The pairing logic used for this round. |
CACHE |
dict[UUID, Round]
|
Global cache of round instances. |
Initializes a new Round instance.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tour
|
Tournament
|
The tournament the round belongs to. |
required |
seq
|
int
|
The sequence number of the round. |
required |
stage
|
Stage
|
The stage of the round (e.g., Swiss, Top 4). |
required |
pairing_logic
|
IPairingLogic
|
The logic used for pairing players in this round. |
required |
uid
|
UUID | None
|
Optional UUID. |
None
|
dropped
|
set[UUID] | None
|
Optional set of dropped player UUIDs. |
None
|
disabled
|
set[UUID] | None
|
Optional set of disabled player UUIDs. |
None
|
byes
|
set[UUID] | None
|
Optional set of player UUIDs who have byes. |
None
|
game_loss
|
set[UUID] | None
|
Optional set of player UUIDs who have game losses. |
None
|
Source code in src/core.py
2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 | |
all_players_assigned
property
all_players_assigned
Checks if all active players are assigned to pods.
Returns:
| Name | Type | Description |
|---|---|---|
bool |
True if all active players are assigned to pods, False otherwise. |
done
property
done
Checks if the round is completed.
A round is considered done if all pods within it have reported results (i.e., no pending pods remain).
Returns:
| Name | Type | Description |
|---|---|---|
bool |
True if the round is done, False otherwise. |
seated
property
seated: set[Player]
Returns the set of players who are currently assigned to pods.
Returns:
| Type | Description |
|---|---|
set[Player]
|
set[Player]: A set of Player instances that are assigned to pods. |
unassigned
property
unassigned: set[Player]
Returns the set of players who are not currently assigned to pods.
Returns:
| Type | Description |
|---|---|
set[Player]
|
set[Player]: A set of Player instances that are not assigned to pods. |
advancing_players
advancing_players(standings) -> list[Player]
Determines which players advance to the next round.
This is primarily used for transitions from Swiss to Top Cut, or between Top Cut rounds.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
standings
|
A list of players sorted by their current standing. |
required |
Returns:
| Type | Description |
|---|---|
list[Player]
|
list[Player]: The list of players who advance. - For Swiss rounds, typically all active players return. - For Top Cut rounds, only winners (and potentially high-seeded byes) advance. |
Source code in src/core.py
3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 | |
create_pairings
create_pairings() -> None
Executes the pairing logic to assign players to pods.
This method uses the round's pairing_logic to determine match-ups and assigns
players to the pods created by create_pods.
Source code in src/core.py
3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 | |
create_pods
create_pods() -> None
Creates empty pod slots for the round.
This method calculates the number and size of pods required based on the number of active players and the tournament configuration, then initializes these pods.
Source code in src/core.py
3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 | |
delete
delete() -> bool
Deletes the current round if it's not completed.
This method removes the current round from the tournament and clears all pods and bye list.
Returns:
| Name | Type | Description |
|---|---|---|
bool |
bool
|
True if the round was deleted, False otherwise. |
Source code in src/core.py
3208 3209 3210 3211 3212 3213 3214 3215 3216 | |
disable_topcut
disable_topcut(standings: list[Player])
Disable players who don't advance to top cut. They remain in the tournament but won't participate in top cut rounds.
Source code in src/core.py
3270 3271 3272 3273 3274 3275 3276 3277 | |
remove_pod
remove_pod(pod: Pod) -> bool
Removes a pod from the round, clearing its assignments.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
pod
|
Pod
|
The pod to remove. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
bool |
bool
|
True if the pod was successfully removed, False otherwise. |
Source code in src/core.py
3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 | |
reset_pods
reset_pods() -> bool
Resets all pods in the round, clearing their assignments.
This method removes all players from all pods and clears the bye list. It is useful for resetting the round before creating new pairings.
Returns:
| Name | Type | Description |
|---|---|---|
bool |
bool
|
True if the reset was successful, False otherwise. |
Source code in src/core.py
3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 | |
sort_pods
sort_pods() -> bool
Try to apply table preferences for players. Pod index is table number. Preserves the relative power-sorted order of non-locked pods. Prioritizes maximizing the number of satisfied preferences.
Returns:
| Name | Type | Description |
|---|---|---|
bool |
bool
|
True if table preferences were applied, False otherwise. |
Source code in src/core.py
3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 | |
sort_pods_by_power
sort_pods_by_power() -> None
Sort pods by number of players and average rating to establish a power-level baseline.
Source code in src/core.py
3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 | |
SortMethod
Bases: Enum
Enum for sorting methods.
SortOrder
Bases: Enum
Enum for sorting order.
StandingsExport
StandingsExport(fields=None, format: Format = DataExport.Format.PLAIN, dir: Union[str, None] = None)
Bases: DataExport, IStandingsExport
Source code in src/core.py
372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 | |
inflate
classmethod
inflate(data: dict)
Creates a StandingsExport instance from a dictionary.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
dict
|
The dictionary containing the configuration. |
required |
Returns:
| Type | Description |
|---|---|
|
A new StandingsExport instance. |
Source code in src/core.py
420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 | |
serialize
serialize()
Serializes the export configuration.
Returns:
| Type | Description |
|---|---|
|
A dictionary containing the serialized configuration. |
Source code in src/core.py
408 409 410 411 412 413 414 415 416 417 418 | |
Tournament
Tournament(config: TournamentConfiguration | None = None, uid: UUID | None = None)
Bases: ITournament
Represents a tournament, managing players, rounds, and pairings.
Attributes:
| Name | Type | Description |
|---|---|---|
CACHE |
dict[UUID, Tournament]
|
Global cache of tournament instances. |
_pairing_logic_cache |
dict[str, type[IPairingLogic]]
|
Cache of discovered pairing logic implementations. |
Initializes a new Tournament instance.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
config
|
TournamentConfiguration | None
|
The configuration object for the tournament. If None, a default configuration is used. |
None
|
uid
|
UUID | None
|
The unique identifier for the tournament. If None, a new UUID is generated. |
None
|
Source code in src/core.py
817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 | |
config
property
writable
config: TournamentConfiguration
Returns the tournament configuration.
Returns:
| Name | Type | Description |
|---|---|---|
TournamentConfiguration |
TournamentConfiguration
|
|
draw_rate
property
draw_rate: float
Calculates the draw rate for the tournament.
Returns:
| Name | Type | Description |
|---|---|---|
float |
float
|
|
ended_rounds
property
ended_rounds
Returns the list of completed rounds in the tournament.
Returns:
| Type | Description |
|---|---|
|
list[Round]: - The list of completed rounds. |
final_swiss_round
property
final_swiss_round: Round | None
Returns the final Swiss round of the tournament.
Returns:
| Type | Description |
|---|---|
Round | None
|
Round|None: - The final Swiss round if it has been played. - None if the final round has not been played yet. |
last_round
property
last_round: Round | None
Returns the last round of the tournament.
Returns:
| Type | Description |
|---|---|
Round | None
|
Round|None: - The last round if it has been played. - None if no rounds have been played. |
pods
property
pods: list[Pod] | None
Returns the list of pods in the current round.
Returns:
| Type | Description |
|---|---|
list[Pod] | None
|
list[Pod]|None: - The list of pods if the current round has been set. - None if the current round has not been set. |
rounds
property
writable
rounds: list[Round]
Returns the list of rounds in the tournament.
Returns:
| Type | Description |
|---|---|
list[Round]
|
list[Round]: - The list of rounds. |
swiss_rounds
property
swiss_rounds
Returns the list of swiss rounds in the tournament.
Returns:
| Type | Description |
|---|---|
|
list[Round]: - The list of swiss rounds. |
__initialize_round
__initialize_round() -> bool
Initializes a new round in the tournament.
This method determines the appropriate stage (Swiss, Top Cut) and pairing logic based on the tournament configuration and current progress. It does not create pairings, only sets up the round structure.
Returns:
| Name | Type | Description |
|---|---|---|
bool |
bool
|
True if a new ro und was successfully initialized. False if a round is already in progress, the maximum number of rounds has been reached, or the tournament is completed. |
Source code in src/core.py
1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 | |
__validate_config
__validate_config(config: TournamentConfiguration) -> bool
Validates the tournament configuration.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
config
|
TournamentConfiguration
|
The tournament configuration. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
bool |
bool
|
|
Source code in src/core.py
1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 | |
add_player
add_player(*specs: Any, **player_attrs) -> list[Player]
Adds players to the tournament.
This method supports flexible input formats for defining players.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*specs
|
Any
|
Variable length argument list. Each argument can be: - A Player object. - A tuple/list of (name,), (name, uid/decklist), or (name, uid, decklist). - A dictionary containing 'name', and optionally 'uid' and 'decklist'. - A string representing the player's name. |
()
|
**player_attrs
|
arbitrary keyword arguments to be applied to all new players (e.g., decklist="link", uid=UUID(...)). If only one positional argument is provided and it's a string or dict, these attributes are merged with it. |
{}
|
Returns:
| Type | Description |
|---|---|
list[Player]
|
list[Player]: A list of the newly created and added Player objects. |
Raises:
| Type | Description |
|---|---|
ValueError
|
If the player specification is invalid or incomplete. |
Source code in src/core.py
1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 | |
bench_players
bench_players(players: Iterable[Player] | Player)
Removes player(s) from their current pod, effectively benching them.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
players
|
Iterable[Player] | Player
|
The player or iterable of players to bench. |
required |
Source code in src/core.py
1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 | |
create_pairings
create_pairings() -> bool
Creates pairings for the current round.
If the round has not been initialized or previous rounds are not complete, this method attempts to handle those states.
Returns:
| Name | Type | Description |
|---|---|---|
bool |
bool
|
True if pairings were successfully created (or were already created). False if pairings could not be created (e.g., due to initialization failure). |
Source code in src/core.py
1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 | |
delete_pod
delete_pod(pod: Pod)
Deletes a specified pod from the current round.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
pod
|
Pod
|
The pod to delete. |
required |
Source code in src/core.py
1656 1657 1658 1659 1660 1661 1662 1663 1664 | |
delete_round
delete_round(tour_round: Round) -> bool
Deletes a round from the tournament if it's not completed.
This method removes the round from the tournament and clears all its pods and bye list.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tour_round
|
Round
|
The round to delete. |
required |
Returns:
| Type | Description |
|---|---|
bool
|
True if the round was successfully deleted, False otherwise. |
Source code in src/core.py
1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 | |
disable_player
disable_player(players: list[Player] | Player, set_disabled: bool = True) -> bool
Disables or enables players for top cut participation.
Disabled players remain in the tournament structure but are excluded from top cut calculations and pairings.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
players
|
list[Player] | Player
|
The player or list of players to disable/enable. |
required |
set_disabled
|
bool
|
If True, disables the player. If False, re-enables them. |
True
|
Returns:
| Name | Type | Description |
|---|---|---|
bool |
bool
|
Always returns True. |
Source code in src/core.py
1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 | |
discover_pairing_logic
classmethod
discover_pairing_logic() -> None
Discover and cache all pairing logic implementations from src/pairing_logic.
Source code in src/core.py
761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 | |
drop_player
drop_player(players: list[Player] | Player) -> bool
Drops a player or list of players from the tournament.
Dropped players are removed from future pairings but their history remains. If a player is dropped during an active round, they might need to be resolved in the current pod first.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
players
|
list[Player] | Player
|
The player or list of players to drop. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
bool |
bool
|
True if the drop was successful, False otherwise. |
Source code in src/core.py
1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 | |
export_str
export_str(data: str, var_export_param: Any, target_type: Target) -> None
Exports a string of data to a specified target (file, web, console).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
str
|
The string data to export. |
required |
var_export_param
|
Any
|
Parameter specific to the target type (e.g., file path, log level). |
required |
target_type
|
Target
|
The target for the export (FILE, WEB, CONSOLE). |
required |
Source code in src/core.py
1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 | |
get
classmethod
get(uid: UUID) -> Tournament
Retrieves a tournament by its UUID.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
uid
|
UUID
|
The tournament UUID. |
required |
Returns:
| Type | Description |
|---|---|
Tournament
|
The tournament instance. |
Source code in src/core.py
850 851 852 853 854 855 856 857 858 859 860 | |
get_pairing_logic
classmethod
get_pairing_logic(logic_name: str) -> IPairingLogic
Get a pairing logic instance by name.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
logic_name
|
str
|
The name of the pairing logic. |
required |
Returns:
| Type | Description |
|---|---|
IPairingLogic
|
The pairing logic class. |
Source code in src/core.py
800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 | |
get_pod_sizes
get_pod_sizes(n) -> list[int] | None
Determines possible pod sizes for a given number of players based on configuration.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
n
|
The number of players. |
required |
Returns:
| Type | Description |
|---|---|
list[int] | None
|
A list of integers representing the sizes of the pods, or None if no valid combination is found. |
Source code in src/core.py
1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 | |
get_pods_str
get_pods_str() -> str
Generates a string representation of the current round's pods.
Returns:
| Type | Description |
|---|---|
str
|
A formatted string showing the pods and players, including byes if applicable. |
Source code in src/core.py
1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 | |
get_standings
get_standings(tour_round: Round | None = None) -> list[Player]
Calculates and retrieves the standings for a specific round.
Use this instead of accessing the players list directly, as this method ensures players are sorted according to the tournament's ranking configuration.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tour_round
|
Round | None
|
The round for which to calculate standings. If None, uses the current round. |
None
|
Returns:
| Type | Description |
|---|---|
list[Player]
|
list[Player]: A list of players sorted by their current standing. |
Source code in src/core.py
1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 | |
get_standings_str
get_standings_str(fields: list[Field] = StandingsExport.DEFAULT_FIELDS, style: Format = StandingsExport.Format.PLAIN, tour_round: Round | None = None, standings: list[Player] | None = None) -> str
Generates a formatted string of the tournament standings.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
fields
|
list[Field]
|
A list of StandingsExport.Field to include in the standings. |
DEFAULT_FIELDS
|
style
|
Format
|
The desired output format (e.g., PLAIN, CSV, JSON). |
PLAIN
|
tour_round
|
Round | None
|
The round for which to generate standings. Defaults to the current round. |
None
|
standings
|
list[Player] | None
|
Pre-calculated standings. If None, standings will be calculated. |
None
|
Returns:
| Type | Description |
|---|---|
str
|
A string containing the formatted standings. |
Raises:
| Type | Description |
|---|---|
ValueError
|
If an invalid style is provided. |
Source code in src/core.py
1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 | |
inflate
classmethod
inflate(data: dict[str, Any]) -> ITournament
Creates a Tournament instance from serialized data.
This method reconstructs the entire tournament state, including players, rounds, and pods, linking them back together using their UUIDs.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
dict[str, Any]
|
A dictionary containing the serialized tournament data (as produced by |
required |
Returns:
| Name | Type | Description |
|---|---|---|
Tournament |
ITournament
|
The reconstructed Tournament instance. |
Source code in src/core.py
1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 | |
manual_pod
manual_pod(players: list[Player])
Creates a manual pod with the specified players.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
players
|
list[Player]
|
A list of players to include in the manual pod. |
required |
Source code in src/core.py
1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 | |
move_player_to_pod
move_player_to_pod(pod: Pod, players: list[Player] | Player, manual=False)
Moves a player or list of players to a specified pod.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
pod
|
Pod
|
The target pod. |
required |
players
|
list[Player] | Player
|
The player or list of players to move. |
required |
manual
|
If True, allows adding players even if the pod is full. |
False
|
Source code in src/core.py
1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 | |
new_round
new_round() -> bool
Starts a new round.
Returns:
| Type | Description |
|---|---|
bool
|
True if a new round was successfully started, False otherwise. |
Source code in src/core.py
1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 | |
previous_round
previous_round(tour_round: Round | None = None) -> Round | None
Returns the previous round of the tournament.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tour_round
|
Round | None
|
The current round. |
None
|
Returns:
| Type | Description |
|---|---|
Round | None
|
Round|None: - The previous round if it exists. - None if the current round is the first round. |
Source code in src/core.py
893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 | |
random_results
random_results()
Generates random results for all incomplete pods in the current round.
Source code in src/core.py
1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 | |
rating
rating(player: Player, tour_round: Round) -> float
Calculate the rating of a player for a given round. The rating is the sum of the points for the player in the Swiss rounds up to and including the given round. If the round is not a Swiss round, the rating is the sum of the points for the player in the last Swiss round.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
player
|
Player
|
The player for whom to calculate the rating. |
required |
tour_round
|
Round
|
The round up to which to calculate the rating. |
required |
Returns:
| Type | Description |
|---|---|
float
|
The player's rating as a float. |
Source code in src/core.py
1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 | |
remove_player_from_pod
remove_player_from_pod(player: Player)
Removes a player from their current pod.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
player
|
Player
|
The player to remove. |
required |
Source code in src/core.py
1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 | |
rename_player
rename_player(player, new_name)
Renames a player in the tournament.
This updates the player's name across all historical records in the tournament (pods, rounds).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
player
|
The player object to rename. |
required | |
new_name
|
The new name for the player. |
required |
Source code in src/core.py
1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 | |
report_draw
report_draw(players: list[Player] | Player)
Reports a draw for the specified player(s) in the current round.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
players
|
list[Player] | Player
|
The player or list of players who drew. |
required |
Source code in src/core.py
1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 | |
report_win
report_win(players: list[Player] | Player)
Reports a win for the specified player(s) in the current round.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
players
|
list[Player] | Player
|
The player or list of players who won. |
required |
Source code in src/core.py
1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 | |
reset_pods
reset_pods() -> bool
Resets the pods for the current round.
Returns:
| Type | Description |
|---|---|
bool
|
True if pods were reset, False otherwise. |
Source code in src/core.py
1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 | |
send_request
staticmethod
send_request(api: str, data: dict[str, Any], headers: dict[str, str]) -> None
Sends a POST request to a specified API endpoint.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
api
|
str
|
The API endpoint URL. |
required |
data
|
dict[str, Any]
|
The JSON data to send. |
required |
headers
|
dict[str, str]
|
A dictionary of HTTP headers. |
required |
Source code in src/core.py
1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 | |
serialize
serialize() -> dict[str, Any]
Serializes the tournament state to a JSON-compatible dictionary.
The serialization includes: - specific tournament configuration - list of players (including their state) - list of pods (including their state) - list of rounds (including pairings and results)
All objects are cross-referenced by their unique IDs to maintain integrity upon restoration.
Returns:
| Name | Type | Description |
|---|---|---|
dict |
dict[str, Any]
|
A dictionary representing the serialized tournament data. |
Source code in src/core.py
1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 | |
toggle_bye
toggle_bye(players: Iterable[Player] | Player)
Toggles the bye status for player(s).
If a player is assigned a bye, they are removed from their pod and marked as having a bye. If they already have a bye, it is removed.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
players
|
Iterable[Player] | Player
|
The player or iterable of players to toggle bye for. |
required |
Source code in src/core.py
1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 | |
toggle_game_loss
toggle_game_loss(players: Iterable[Player] | Player)
Toggles the game loss status for player(s).
If a player is assigned a game loss, they are removed from their pod and marked as having lost. If they already have a game loss, it is removed.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
players
|
Iterable[Player] | Player
|
The player or iterable of players to toggle game loss for. |
required |
Source code in src/core.py
1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 | |
TournamentAction
Serializable action that will be stored in tournament log and can be restored
action
classmethod
action(func: _F) -> _F
Decorator to mark a function as a tournament action.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
func
|
_F
|
The function to decorate. |
required |
Returns:
| Type | Description |
|---|---|
_F
|
The decorated function. |
Source code in src/core.py
537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 | |
load
classmethod
load(logdir='logs/default.json') -> Tournament | None
Loads the tournament state from a log file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
logdir
|
The path to the log file (default: 'logs/default.json'). |
'logs/default.json'
|
Returns:
| Type | Description |
|---|---|
Tournament | None
|
The loaded tournament instance, or None if the file does not exist. |
Source code in src/core.py
575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 | |
store
classmethod
store(tournament: Tournament)
Stores the tournament state to a log file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tournament
|
Tournament
|
The tournament instance to store. |
required |
Source code in src/core.py
559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 | |
TournamentConfiguration
TournamentConfiguration(**kwargs)
Bases: ITournamentConfiguration
Initializes the TournamentConfiguration.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
**kwargs
|
Arbitrary keyword arguments using the configuration. |
{}
|
Source code in src/core.py
617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 | |
max_pod_size
property
max_pod_size
Returns the maximum pod size.
Returns:
| Type | Description |
|---|---|
|
The maximum pod size. |
min_pod_size
property
min_pod_size
Returns the minimum pod size.
Returns:
| Type | Description |
|---|---|
|
The minimum pod size. |
ranking
staticmethod
ranking(x: IPlayer, tour_round: IRound) -> tuple[int | float | str, ...]
Calculates the ranking score for a player.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
x
|
IPlayer
|
The player. |
required |
tour_round
|
IRound
|
The current round. |
required |
Returns:
| Type | Description |
|---|---|
tuple[int | float | str, ...]
|
A tuple of ranking criteria. |
Source code in src/core.py
682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 | |
TournamentContext
TournamentContext(tour: Tournament, tour_round: Round, standings: list[Player])
Context object holding tournament state for export operations.
Initializes the TournamentContext.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tour
|
Tournament
|
The tournament instance. |
required |
tour_round
|
Round
|
The specific round of the tournament. |
required |
standings
|
list[Player]
|
The list of players in the current standings. |
required |
Source code in src/core.py
162 163 164 165 166 167 168 169 170 171 172 | |