0.0.8 /JL

This commit is contained in:
Jan Lerking
2024-02-22 09:02:14 +01:00
parent e344b48c29
commit 2a99b0c08a
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
```python
from tcxpandas import TcxPandas
from tcxpandas.TcxPandas import TcxPandas
df = TcxPandas("your_file_here.tcx")
df1 = TcxPandas("another_file.tcx")

View File

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

View File

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