impectPy 2.5.5__tar.gz → 2.5.6__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {impectpy-2.5.5 → impectpy-2.5.6}/PKG-INFO +3 -3
- {impectpy-2.5.5 → impectpy-2.5.6}/README.md +2 -2
- {impectpy-2.5.5 → impectpy-2.5.6}/impectPy/__init__.py +1 -1
- {impectpy-2.5.5 → impectpy-2.5.6}/impectPy/events.py +8 -0
- {impectpy-2.5.5 → impectpy-2.5.6}/impectPy/set_pieces.py +8 -0
- {impectpy-2.5.5 → impectpy-2.5.6}/impectPy.egg-info/PKG-INFO +3 -3
- {impectpy-2.5.5 → impectpy-2.5.6}/setup.py +1 -1
- {impectpy-2.5.5 → impectpy-2.5.6}/tests/test_package.py +1 -1
- {impectpy-2.5.5 → impectpy-2.5.6}/LICENSE.md +0 -0
- {impectpy-2.5.5 → impectpy-2.5.6}/impectPy/access_token.py +0 -0
- {impectpy-2.5.5 → impectpy-2.5.6}/impectPy/config.py +0 -0
- {impectpy-2.5.5 → impectpy-2.5.6}/impectPy/formations.py +0 -0
- {impectpy-2.5.5 → impectpy-2.5.6}/impectPy/generate_xml.py +0 -0
- {impectpy-2.5.5 → impectpy-2.5.6}/impectPy/helpers.py +0 -0
- {impectpy-2.5.5 → impectpy-2.5.6}/impectPy/impect.py +0 -0
- {impectpy-2.5.5 → impectpy-2.5.6}/impectPy/iterations.py +0 -0
- {impectpy-2.5.5 → impectpy-2.5.6}/impectPy/matches.py +0 -0
- {impectpy-2.5.5 → impectpy-2.5.6}/impectPy/player_iteration_averages.py +0 -0
- {impectpy-2.5.5 → impectpy-2.5.6}/impectPy/player_iteration_scores.py +0 -0
- {impectpy-2.5.5 → impectpy-2.5.6}/impectPy/player_match_scores.py +0 -0
- {impectpy-2.5.5 → impectpy-2.5.6}/impectPy/player_matchsums.py +0 -0
- {impectpy-2.5.5 → impectpy-2.5.6}/impectPy/player_profile_scores.py +0 -0
- {impectpy-2.5.5 → impectpy-2.5.6}/impectPy/squad_coefficients.py +0 -0
- {impectpy-2.5.5 → impectpy-2.5.6}/impectPy/squad_iteration_averages.py +0 -0
- {impectpy-2.5.5 → impectpy-2.5.6}/impectPy/squad_iteration_scores.py +0 -0
- {impectpy-2.5.5 → impectpy-2.5.6}/impectPy/squad_match_scores.py +0 -0
- {impectpy-2.5.5 → impectpy-2.5.6}/impectPy/squad_matchsums.py +0 -0
- {impectpy-2.5.5 → impectpy-2.5.6}/impectPy/squad_ratings.py +0 -0
- {impectpy-2.5.5 → impectpy-2.5.6}/impectPy/starting_positions.py +0 -0
- {impectpy-2.5.5 → impectpy-2.5.6}/impectPy/substitutions.py +0 -0
- {impectpy-2.5.5 → impectpy-2.5.6}/impectPy.egg-info/SOURCES.txt +0 -0
- {impectpy-2.5.5 → impectpy-2.5.6}/impectPy.egg-info/dependency_links.txt +0 -0
- {impectpy-2.5.5 → impectpy-2.5.6}/impectPy.egg-info/requires.txt +0 -0
- {impectpy-2.5.5 → impectpy-2.5.6}/impectPy.egg-info/top_level.txt +0 -0
- {impectpy-2.5.5 → impectpy-2.5.6}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: impectPy
|
|
3
|
-
Version: 2.5.
|
|
3
|
+
Version: 2.5.6
|
|
4
4
|
Summary: A Python package to facilitate interaction with the Impect customer API
|
|
5
5
|
Home-page: https://github.com/ImpectAPI/impectPy
|
|
6
6
|
Author: Impect
|
|
@@ -25,9 +25,9 @@ Dynamic: summary
|
|
|
25
25
|
|
|
26
26
|
A package provided by: Impect GmbH
|
|
27
27
|
|
|
28
|
-
Version: v2.5.
|
|
28
|
+
Version: v2.5.6
|
|
29
29
|
|
|
30
|
-
**Updated:
|
|
30
|
+
**Updated: February 16th 2026**
|
|
31
31
|
|
|
32
32
|
---
|
|
33
33
|
|
|
@@ -477,12 +477,19 @@ def getEventsFromHost(
|
|
|
477
477
|
"setPieceSubPhaseCornerType",
|
|
478
478
|
"setPieceSubPhaseFreeKickEndZone",
|
|
479
479
|
"setPieceSubPhaseFreeKickType",
|
|
480
|
+
"setPieceSubPhaseGoalKickEndZone",
|
|
481
|
+
"setPieceSubPhaseGoalKickType",
|
|
482
|
+
"setPieceSubPhaseThrowInEndZone",
|
|
483
|
+
"setPieceSubPhaseThrowInType",
|
|
484
|
+
"setPieceSubPhaseSecondDeliveryEndZone",
|
|
485
|
+
"setPieceSubPhaseSecondDeliveryType",
|
|
480
486
|
"setPieceSubPhaseMainEvent",
|
|
481
487
|
"setPieceSubPhaseMainEventPlayerId",
|
|
482
488
|
"setPieceSubPhaseMainEventPlayerName",
|
|
483
489
|
"setPieceSubPhaseMainEventOutcome",
|
|
484
490
|
"setPieceSubPhasePassReceiverId",
|
|
485
491
|
"setPieceSubPhasePassReceiverName",
|
|
492
|
+
"setPieceSubPhaseBallTrajectory",
|
|
486
493
|
"setPieceSubPhaseFirstTouchPlayerId",
|
|
487
494
|
"setPieceSubPhaseFirstTouchPlayerName",
|
|
488
495
|
"setPieceSubPhaseFirstTouchWon",
|
|
@@ -490,6 +497,7 @@ def getEventsFromHost(
|
|
|
490
497
|
"setPieceSubPhaseSecondTouchPlayerId",
|
|
491
498
|
"setPieceSubPhaseSecondTouchPlayerName",
|
|
492
499
|
"setPieceSubPhaseSecondTouchWon",
|
|
500
|
+
"setPieceSubPhaseSecondTouchEndZone",
|
|
493
501
|
]
|
|
494
502
|
|
|
495
503
|
# add columns that might not exist in previous data versions
|
|
@@ -284,11 +284,18 @@ def getSetPiecesFromHost(matches: list, connection: RateLimitedAPI, host: str) -
|
|
|
284
284
|
"setPieceSubPhaseCornerType",
|
|
285
285
|
"setPieceSubPhaseFreeKickEndZone",
|
|
286
286
|
"setPieceSubPhaseFreeKickType",
|
|
287
|
+
"setPieceSubPhaseGoalKickEndZone",
|
|
288
|
+
"setPieceSubPhaseGoalKickType",
|
|
289
|
+
"setPieceSubPhaseThrowInEndZone",
|
|
290
|
+
"setPieceSubPhaseThrowInType",
|
|
291
|
+
"setPieceSubPhaseSecondDeliveryEndZone",
|
|
292
|
+
"setPieceSubPhaseSecondDeliveryType",
|
|
287
293
|
"setPieceSubPhaseMainEventPlayerId",
|
|
288
294
|
"setPieceSubPhaseMainEventPlayerName",
|
|
289
295
|
"setPieceSubPhaseMainEventOutcome",
|
|
290
296
|
"setPieceSubPhasePassReceiverId",
|
|
291
297
|
"setPieceSubPhasePassReceiverName",
|
|
298
|
+
"setPieceSubPhaseBallTrajectory",
|
|
292
299
|
"setPieceSubPhaseFirstTouchPlayerId",
|
|
293
300
|
"setPieceSubPhaseFirstTouchPlayerName",
|
|
294
301
|
"setPieceSubPhaseFirstTouchWon",
|
|
@@ -296,6 +303,7 @@ def getSetPiecesFromHost(matches: list, connection: RateLimitedAPI, host: str) -
|
|
|
296
303
|
"setPieceSubPhaseSecondTouchPlayerId",
|
|
297
304
|
"setPieceSubPhaseSecondTouchPlayerName",
|
|
298
305
|
"setPieceSubPhaseSecondTouchWon",
|
|
306
|
+
"setPieceSubPhaseSecondTouchEndZone",
|
|
299
307
|
"setPieceSubPhase_SHOT_XG",
|
|
300
308
|
"setPieceSubPhase_PACKING_XG",
|
|
301
309
|
"setPieceSubPhase_POSTSHOT_XG",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: impectPy
|
|
3
|
-
Version: 2.5.
|
|
3
|
+
Version: 2.5.6
|
|
4
4
|
Summary: A Python package to facilitate interaction with the Impect customer API
|
|
5
5
|
Home-page: https://github.com/ImpectAPI/impectPy
|
|
6
6
|
Author: Impect
|
|
@@ -25,9 +25,9 @@ Dynamic: summary
|
|
|
25
25
|
|
|
26
26
|
A package provided by: Impect GmbH
|
|
27
27
|
|
|
28
|
-
Version: v2.5.
|
|
28
|
+
Version: v2.5.6
|
|
29
29
|
|
|
30
|
-
**Updated:
|
|
30
|
+
**Updated: February 16th 2026**
|
|
31
31
|
|
|
32
32
|
---
|
|
33
33
|
|
|
@@ -17,7 +17,7 @@ setup(
|
|
|
17
17
|
"pandas>=2.2.0",
|
|
18
18
|
"numpy>=1.24.2"],
|
|
19
19
|
# *strongly* suggested for sharing
|
|
20
|
-
version="2.5.
|
|
20
|
+
version="2.5.6",
|
|
21
21
|
# The license can be anything you like
|
|
22
22
|
license="MIT",
|
|
23
23
|
description="A Python package to facilitate interaction with the Impect customer API",
|
|
@@ -13,7 +13,7 @@ import pandas as pd
|
|
|
13
13
|
execute_functions = False
|
|
14
14
|
|
|
15
15
|
# branch comparison configuration
|
|
16
|
-
BRANCH_A_NAME = "
|
|
16
|
+
BRANCH_A_NAME = "142-add-goal-kick-throw-in-data"
|
|
17
17
|
BRANCH_B_NAME = "release"
|
|
18
18
|
|
|
19
19
|
REPO_ROOT = Path(__file__).resolve().parents[1]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|