HPI/my/body/exercise/all.py
2024-10-19 23:41:22 +01:00

17 lines
358 B
Python

'''
Combined exercise data
'''
from ...core.pandas import DataFrameT, check_dataframe
@check_dataframe
def dataframe() -> DataFrameT:
# this should be somehow more flexible...
import pandas as pd
from ...endomondo import dataframe as EDF
from ...runnerup import dataframe as RDF
return pd.concat([
EDF(),
RDF(),
])