Merge pull request #2 from Lerking/0.0.8

0.0.8
This commit is contained in:
Lerking
2024-02-22 09:04:15 +01:00
committed by GitHub
3 changed files with 4 additions and 4 deletions

View File

@@ -8,7 +8,7 @@ So each instance of TcxPandas can be initiated with different tcx files and then
## Usage ## Usage
```python ```python
from tcxpandas import TcxPandas from tcxpandas.TcxPandas import TcxPandas
df = TcxPandas("your_file_here.tcx") df = TcxPandas("your_file_here.tcx")
df1 = TcxPandas("another_file.tcx") df1 = TcxPandas("another_file.tcx")

View File

@@ -1,6 +1,6 @@
[project] [project]
name = "tcxpandas" name = "tcxpandas"
version = "0.0.5" version = "0.0.8"
authors = [ authors = [
{ name="Jan Lerking" }, { name="Jan Lerking" },
] ]

View File

@@ -1,5 +1,5 @@
from tcxpandas import TcxPandas from tcxpandas.TcxPandas import TcxPandas
if __name__ == "__main__": if __name__ == "__main__":
tcx = TcxPandas("tests/test.tcx") tcx = TcxPandas("test-data/test.tcx")
print(tcx.dataframes) print(tcx.dataframes)