File size: 374 Bytes
d6ea71e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
"""Implementation of the Atomic-SPADL language."""

__all__ = [
    "convert_to_atomic",
    "AtomicSPADLSchema",
    "bodyparts_df",
    "actiontypes_df",
    "add_names",
    "play_left_to_right",
]

from .base import convert_to_atomic
from .config import actiontypes_df, bodyparts_df
from .schema import AtomicSPADLSchema
from .utils import add_names, play_left_to_right