This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#%% import dependencies | |
# Python script to convert Garmin weight data from JSON format to CSV, and also display a matplotlib chart. | |
# Save Garmin data as 'garmin.json' in the same directory as this python file. | |
import json, time, os, sys | |
import datetime as dt | |
from matplotlib import pyplot as plt | |