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 dash # 1.1.1 | |
from dash.dependencies import Input, Output, State | |
import dash_table # 4.1.0 | |
import dash_core_components as dcc # 1.1.1 | |
import dash_html_components as html | |
from dash.exceptions import PreventUpdate | |
import numpy as np # 1.17.0 | |
import pandas as pd # 0.25.0 |
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
"""Process Fitbit weight json data generated from https://www.fitbit.com/settings/data/export""" | |
from pathlib import Path | |
from typing import List | |
import pandas as pd | |
BASE_DIR = Path(__file__).parent | |
DATA_DIR = BASE_DIR.joinpath("fitbit_weight_data") |