File size: 503 Bytes
d6ea71e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
"""Implementation of the SPADL language."""
__all__ = [
"opta",
"statsbomb",
"wyscout",
"kloppy",
"config",
"SPADLSchema",
"bodyparts_df",
"actiontypes_df",
"results_df",
"add_names",
"play_left_to_right",
]
from . import config, opta, statsbomb, wyscout
from .config import actiontypes_df, bodyparts_df, results_df
from .schema import SPADLSchema
from .utils import add_names, play_left_to_right
try:
from . import kloppy
except ImportError:
pass
|