2024-02-22 09:04:15 +01:00
2024-02-22 04:32:04 +01:00
2024-02-22 09:02:14 +01:00
2024-02-21 07:31:03 +01:00
2024-02-21 07:34:50 +01:00
2024-02-22 09:02:14 +01:00
2024-02-22 09:02:14 +01:00

tcxpandas

A small Python module to convert tcx component classes to pandas dataframes.

Initialize the TcxPandas class with the tcx file, you want to export component classes from. The instance of the class will then contain a list of all component classes as dataframes.

So each instance of TcxPandas can be initiated with different tcx files and then each of them wil contain the dataframes for a particular tcx file.

Usage

from tcxpandas.TcxPandas import TcxPandas

df = TcxPandas("your_file_here.tcx")
df1 = TcxPandas("another_file.tcx")

print(df.dataframes)
print(df1.dataframes)
Description
No description provided
Readme 45 KiB
Languages
Python 100%