python-fitparse icon indicating copy to clipboard operation
python-fitparse copied to clipboard

Python library to parse ANT/Garmin .FIT files

Results 36 python-fitparse issues
Sort by recently updated
recently updated
newest added

I used the following cycles to extract heart rate data: ![image](https://user-images.githubusercontent.com/45417928/175189619-df9ba26c-a692-46ad-a712-75770c9d6aee.png) If I print databuf, I'll get a lot of None, which seriously affects my heart rate curve, because IF...

is it possible to extract the details of the laps? what parameters should i use?

> [Python](http://www.python.org/) 2.5 and above (Python 3 is currently not supported) https://dtcooper.github.io/python-fitparse/ It appears that this information is out of date as the setup.py file lists that there is python...

This PR adds the file positions of each record to the parsing code. Motivation: I have a garmin 66i that occasionally produces bad records ( corrupt time and/or very inaccurate...

Fix to allow unterminated files to export as far as possible. This allows for data recovery from `.fit` files from GPS headunits before uploading to Strava, TrainingPeaks, et al.

The `FitFile.protocol_version, profile_version` are just strings "major.minor" (i.e. "int dot int" format), not floats. Floats are inaccurate representations. I propose to create a custom class `FitVersion` with fields `major, minor`...

Fixes: https://github.com/dtcooper/python-fitparse/issues/56

I am attempting to use fitparse to pull data from a RunScribe .fit file, and am running into an error at the end of the file: fitparse.utils.FitEOFError: Tried to read...

```python $ python3 scripts/generate_profile.py FitSDKRelease_21.53.00.zip fitparse/profile.py Traceback (most recent call last): File "/devel/git/python-fitparse/scripts/generate_profile.py", line 626, in main(xls, profile) File "/devel/git/python-fitparse/scripts/generate_profile.py", line 558, in main types_rows, messages_rows = parse_spreadsheet(xls_file, 'Types', 'Messages')...

Fixes: https://github.com/dtcooper/python-fitparse/issues/129