socr / atomic /spadl /__init__.py
scfive's picture
Upload 203 files
d6ea71e verified
raw
history blame contribute delete
374 Bytes
"""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