kinemotion 0.17.0__py3-none-any.whl

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.

Potentially problematic release.


This version of kinemotion might be problematic. Click here for more details.

kinemotion/__init__.py ADDED
@@ -0,0 +1,31 @@
1
+ """Kinemotion: Video-based kinematic analysis for athletic performance."""
2
+
3
+ from .api import (
4
+ CMJVideoConfig,
5
+ CMJVideoResult,
6
+ DropJumpVideoConfig,
7
+ DropJumpVideoResult,
8
+ process_cmj_video,
9
+ process_cmj_videos_bulk,
10
+ process_dropjump_video,
11
+ process_dropjump_videos_bulk,
12
+ )
13
+ from .cmj.kinematics import CMJMetrics
14
+ from .dropjump.kinematics import DropJumpMetrics
15
+
16
+ __version__ = "0.1.0"
17
+
18
+ __all__ = [
19
+ # Drop jump API
20
+ "process_dropjump_video",
21
+ "process_dropjump_videos_bulk",
22
+ "DropJumpVideoConfig",
23
+ "DropJumpVideoResult",
24
+ "DropJumpMetrics",
25
+ # CMJ API
26
+ "process_cmj_video",
27
+ "process_cmj_videos_bulk",
28
+ "CMJVideoConfig",
29
+ "CMJVideoResult",
30
+ "CMJMetrics",
31
+ ]