lpierron

Results 10 comments of lpierron

I have the same issue, but it's not a problem for me, analyzing a year takes about 30 seconds not 10 hours. ``` make ... ___Analyzing Data___ Summary Tables Generation:...

I think it's a problem with your installation of `sqlite3`, could you reinstall it on your VM and make some tests. If you don't use the DB, I think you...

I invite you to make some profiling on `garmin.py`: ``` % python3 -m cProfile -o garmin.prof garmin.py --analyze ... % python3 -m pstats garmin.prof Welcome to the profile statistics browser....

My version was 3.8: python3 --version Python 3.8.2

Hello, I have the same problem. Any workaround. ```python bits = aruco.Dictionary_getBitsFromByteList(aruco.Dictionary_get(aruco.DICT_4X4_50).bytesList, 4) --------------------------------------------------------------------------- error Traceback (most recent call last) in ----> 1 bits = aruco.Dictionary_getBitsFromByteList(aruco.Dictionary_get(aruco.DICT_4X4_50).bytesList, 4) error: OpenCV(4.4.0) /private/var/folders/nz/vv4_9tw56nv9k3tkvyszvwg80000gn/T/pip-req-build-7r9u7hyj/opencv_contrib/modules/aruco/src/dictionary.cpp:239:...

I found you can have only one marker in the `bytesList`: ```python >>> bytes = aruco.Dictionary_get(aruco.DICT_7X7_100).bytesList >>> bytes.shape (100, 7, 4) >>> bits = aruco.Dictionary_getBitsFromByteList(bytes[0:1, :, :], 7) >>> bits...

Hi I have the same problem on Mac OS. But the linter seems to do the job.

To help, I wrote a little program to get the VO2Max on my Garmin Connect account with `garth`: [vo2max.py.zip](https://github.com/user-attachments/files/16458148/vo2max.py.zip) Partial result of running `VO2max.py`: ``` -------------------- api.get_max_metrics('2024-07-31') -------------------- [ {...

I found the problem and solution. Since May 2024, Garmin JSON activity files do not export some fields with a `null` value like `avgVerticalOscillation`. So in this program, the variable...

It sounds like `ConfigManager` has been renamed:`GarminConnectConfigManager`