-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
724 lines (536 loc) · 25.6 KB
/
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
"""
____________________________________________________________________________
|
Callback URL - https://127.0.0.1:8080/ |
OAuth 2.0: Authorization URI - https://www.fitbit.com/oauth2/authorize |
OAuth 2.0: Access/Refresh Token Request URI - |
https://api.fitbit.com/oauth2/token |
|
DOCUMENTATION: |
https://python-fitbit.readthedocs.io/en/latest/ |
|
Epoch of Watch: 4/30/19 |
____________________________________________________________________________|
"""
import fitbit
import sys
import gather_keys_oauth2 as Oauth2
import pandas as pd
import time
import os.path
import csv
from pyfiglet import Figlet
callAmount = 0
def main():
global callAmount
# Prints cool banner using Figlet
print()
print()
text_art = Figlet(font='slant')
print(text_art.renderText('FitByte'))
# Creates the client to access API, see function below
auth2_client = getAuth2Client()
# Saves the last called date for automatic retrieval
lastCalledDate = printLastSynced(os.listdir("data\\Sleep\\"), False)
# Calls the getDateArray function to get a list of dates, or one date if -m is entered
dateArray = getDateArray(lastCalledDate)
print()
# Declares a call amount variable for printing at end of program
callAmount = 0
# Loops through all dates from lastSynced to current user input
for dateItem in dateArray:
print("Calling Date: " + dateItem)
# Creates a dictionary of all the different date formats used in this API, see f()
date = createDateFormats(dateItem) # The list of date formats
# Collects heartrate data by the second
intradayDataCollection('activities/heart',
auth2_client,
date['dashDate'],
'1sec',
'activities-heart-intraday',
'Heart',
dateItem)
# Collects distance data by the minute
intradayDataCollection('activities/distance',
auth2_client,
date['dashDate'],
'1min',
'activities-distance-intraday',
'Distance',
dateItem)
# Collects step data by the minute
intradayDataCollection('activities/steps',
auth2_client,
date['dashDate'],
'1min',
'activities-steps-intraday',
'Steps',
dateItem)
# Collects elevation data by the minute
intradayDataCollection('activities/elevation',
auth2_client,
date['dashDate'],
'1min',
'activities-elevation-intraday',
'Elevation',
dateItem)
# Collects calories data by the minute
intradayDataCollection('activities/calories',
auth2_client,
date['dashDate'],
'1min',
'activities-calories-intraday',
'Calories',
dateItem)
# Collects and formats sleep
intradayDataCollection('sleep',
auth2_client,
date['dashDate'],
'NA',
'Sleep',
'Sleep',
dateItem)
# SLEEP SUMMARY
# Gets the local path of my sleep csv file
sleepSumPath = os.path.join(
os.getcwd(), 'data', 'SummaryData', 'SleepSummary.csv')
sleepSumPath2 = os.path.join(
os.getcwd(), 'data', 'SummaryData', 'SleepSummary1.csv')
# Checks if date has already been inputted
if checkInputStatus(sleepSumPath, date, 'Sleep', True):
# If not, get the summary statistics from the api
try:
# print(auth2_client.sleep(date=date['dashDate']))
fit_statsSum = auth2_client.sleep(
date=date['dashDate'])['sleep'][0]
callAmount += 1
# Create a data frame from the contents of the api call
ssummarydf = pd.DataFrame({'Date': date['spreadDate'],
'StartTime': fit_statsSum['startTime'][11:19],
'MainSleep': fit_statsSum['isMainSleep'],
'Efficiency': fit_statsSum['efficiency'],
'Duration': fit_statsSum['duration'],
'Minutes Asleep': fit_statsSum['minutesAsleep'],
'Minutes Awake': fit_statsSum['minutesAwake'],
'Awakenings': fit_statsSum['awakeCount'],
'Restless Count': fit_statsSum['restlessCount'],
'Restless Duration': fit_statsSum['restlessDuration'],
'Time in Bed': fit_statsSum['timeInBed']}, index=[0])
# Open the sleep summary csv file
with open(sleepSumPath, 'a') as f:
# Create a dataframe from that CSV
# Sets up file to be checked for header value
tempSleepDF = pd.read_csv(sleepSumPath)
# Does it exist?
sleepSumExists = tempSleepDF.empty
# Concat the previous lines with the new one. Add header if there was no previous file
ssummarydf.to_csv(f, header=sleepSumExists, index=False)
# No idea why but outputting to CSV skips a line every time, this fixes that. See f()
fixWhiteSpaces(sleepSumPath, sleepSumPath2)
except:
print(' - Sleep Error: No data found, Moving On. . .')
# ACTIVITY SUMMARY
# Get the relative paths to the activity summary file
actSumPath = os.path.join(
os.getcwd(), 'data', 'SummaryData', 'ActivitySummary.csv')
actSumPath2 = os.path.join(
os.getcwd(), 'data', 'SummaryData', 'ActivitySummary1.csv')
# See checkInputStatus()
if checkInputStatus(actSumPath, date, 'Activity', True):
# Calls the api for the activity summary
sumFitStatsACT = auth2_client.activities(
date=date['dashDate'])['summary']
weightResponse = auth2_client.get_bodyweight(
base_date=date['dashDate'])['weight']
# print(weightResponse) #testing
if not weightResponse:
weightResponse = 'None'
else:
weightResponse = weightResponse[0]['weight']
# print(weightResponse) #testing
callAmount += 2
# Parses the api call into a dataframe
actSumDF = pd.DataFrame({'Date': date['spreadDate'],
'Activity Calories': sumFitStatsACT['activityCalories'],
'Calories BMR': sumFitStatsACT['caloriesBMR'],
'Calories Out': sumFitStatsACT['caloriesOut'],
'Marginal Calories': sumFitStatsACT['marginalCalories'],
'Elevation': sumFitStatsACT['elevation'],
'Sedentary Minutes': sumFitStatsACT['sedentaryMinutes'],
'Lightly Active Minutes': sumFitStatsACT['lightlyActiveMinutes'],
'Fairly Active Minutes': sumFitStatsACT['fairlyActiveMinutes'],
'Very Active Minutes': sumFitStatsACT['veryActiveMinutes'],
'Floors': sumFitStatsACT['floors'],
'Steps': sumFitStatsACT['steps'],
'Weight': weightResponse}, index=[0])
# Open the location of the previous summary file
with open(actSumPath, 'a') as f:
# See if it exists
tempActivityDF = pd.read_csv(actSumPath)
activitySumExists = tempActivityDF.empty
# Concat old file and new file
actSumDF.to_csv(f, header=activitySumExists, index=False)
# No idea why but outputting to CSV skips a line every time. This
# fixes that
fixWhiteSpaces(actSumPath, actSumPath2)
# FOOD SUMMARY
# See explanation on the previous two summary functions, they are
# exactly similar
foodSumPath = os.path.join(
os.getcwd(), 'data', 'SummaryData', 'FoodSummary.csv')
foodSumPath2 = os.path.join(
os.getcwd(), 'data', 'SummaryData', 'FoodSummary1.csv')
if checkInputStatus(foodSumPath, date, 'Food', True):
foodStatsACT = auth2_client.foods_log(
date=date['dashDate'])['summary']
callAmount += 1
foodSumDF = pd.DataFrame({'Date': date['spreadDate'],
'Calories': foodStatsACT['calories'],
'Water': foodStatsACT['water'],
'Carbs': foodStatsACT['carbs'],
'Fat': foodStatsACT['fat'],
'Fiber': foodStatsACT['fiber'],
'Protein': foodStatsACT['protein'],
'Sodium': foodStatsACT['sodium']}, index=[0])
with open(foodSumPath, 'a') as f:
tempFoodDF = pd.read_csv(foodSumPath)
foodSumExists = tempFoodDF.empty
foodSumDF.to_csv(f, header=foodSumExists, index=False)
fixWhiteSpaces(foodSumPath, foodSumPath2)
print()
print("\n-- Collection successful. --")
print(str(callAmount) + " API call(s) were used during this program. \n")
exit()
# Takes the data from tokens.txt and gets the auth2_client needed by API
def getAuth2Client():
# Open the tokens.txt file as f
with open('tokens.txt') as f:
# Make an array out of the different lines of the file
content = f.readlines()
# Clean the array values so that they work
content = [x.strip() for x in content]
# Sets up the date-time to check if a new api call is required
dt = int(time.time())
lastdt = int(content[2])
expireTime = 10 * 60 # (10 min in UNIX time)
# User specific data, read from line 1 and 2 of tokens file
CLIENT_ID = content[0]
CLIENT_SECRET = content[1]
# Print Days, Hours, Minutes, Seconds since last server refresh,
# see
# timeLastCalled()
timeLastCalled(dt, lastdt)
# Determine if a new server call is required to refresh tokens
if((dt - lastdt) >= expireTime):
print('\n-----Calling server for new tokens-----\n')
# Refreshses tokens
server = Oauth2.OAuth2Server(CLIENT_ID, CLIENT_SECRET)
server.browser_authorize()
# Retrieves new tokens from FitBit
ACCESS_TOKEN = str(server.fitbit.client.session.token['access_token'])
REFRESH_TOKEN = str(
server.fitbit.client.session.token['refresh_token'])
print('\n-----Writing new tokens to tokens.txt-----')
# Writes updated information to tokens.txt for next run of program
with open('tokens.txt', 'w') as f:
f.write(str(CLIENT_ID) + '\n')
f.write(str(CLIENT_SECRET) + '\n')
f.write(str(dt) + '\n') # (Current Unix Time)
f.write(str(ACCESS_TOKEN) + '\n')
f.write(str(REFRESH_TOKEN) + '\n')
else: # (If a server call was not required, take previous tokens)
ACCESS_TOKEN = content[3]
REFRESH_TOKEN = content[4]
# Use those tokens and ID's to make the auth2_client that will be used for
# API calls
auth2_client = fitbit.Fitbit(CLIENT_ID,
CLIENT_SECRET,
oauth2=True,
access_token=ACCESS_TOKEN,
refresh_token=REFRESH_TOKEN)
# Return the client
return auth2_client
# Prints the last date that was synced using fitbit
def printLastSynced(dirList, printBool):
# If no files in directory
if len(dirList) == 0:
print("No Previous App Calls \n")
return
# Convert files to two values in 2d array
for i in range(len(dirList)):
# Pulls the year from the filename
fileYear = dirList[i][0:4]
# Pulls the month from the filename
fileMonth = dirList[i][4:6]
# Pulls the day from the filename
fileDay = dirList[i][6:8]
# Make a combo and save them into dirList
dirList[i] = [int(fileYear), int(fileMonth), int(fileDay)]
highDay = 0
highMonth = 0
highYear = 0
# Loop to find the highest date in the file system
for file in dirList:
# if the year is greater than previous, set the month to new value,
# reset days
if file[0] > highYear:
highYear = file[0]
highMonth = 1
highDay = 1
# if the month is greater than previous, set the month to new value,
# reset days
if file[1] > highMonth:
highMonth = file[1]
highDay = 1
# If the day is greater than previous, set the day to new value
if file[2] > highDay:
highDay = file[2]
# If print was specified in function call, print
if printBool is True:
print('Data synced up to : ' + str(highMonth) +
'/' + str(highDay) + '/' + str(highYear))
# If day value is <10, add a '0' in front of it
stringDay = getStringVersion(highDay)
# If month value is <10, add a '0' in front of it
stringMonth = getStringVersion(highMonth)
# Return the date of the most recent call, signified by high year/month/day
return (str(highYear) + str(stringMonth) + str(stringDay))
# Creates an array that is fed into the program to sync multiple dates at once
def getDateArray(lastCalledDate):
dateArray = []
# Gets date from user if manual mode
# Creates the array that is fed into the program for sync
if len(sys.argv) > 1 and sys.argv[1] == "-m":
# Print prompts and takes the single date for manual mode
print("\nEntering manual date input mode: ")
userDate = str(
input('Input Target Date: (YYYYMMDD) [YYYMMDD . . .] || '))
print()
# Makes an array of 1 - infinite dates
dateArray = userDate.split(' ')
return dateArray
# Gets input from user if manual mode is not entered
userDate = str(input('\nInput Target Date: (YYYYMMDD) -- '))
# Initialize the days in each month for future use
monthDays = {"01": 31, "02": 28, "03": 31, "04": 30, "05": 31,
"06": 30, "07": 31, "08": 31, "09": 30, "10": 31, "11": 30, "12": 31}
# Gets year from user input
targetYear = int(userDate[0:4])
# Gets month from user
targetMonth = int(userDate[4:6])
# Gets day from user
targetDay = int(userDate[6:])
# Gets year from last call made
prevYear = int(lastCalledDate[0:4])
# Gets month from last call made
prevMonth = int(lastCalledDate[4:6])
# Gets day from last call made
prevDay = int(lastCalledDate[6:])
# Runs up until 1 day after
while(targetMonth > prevMonth) or (targetDay > prevDay) or (targetYear > prevYear):
# Increment day
prevDay = prevDay + 1
# If the days have overflowed, it gets set to 1, and month is
# incremented
if monthDays[getStringVersion(prevMonth)] < prevDay:
prevDay = 1
prevMonth = prevMonth + 1
# If month > 12, add 1 to year, set month to 1
if prevMonth > 12:
prevMonth = 1
prevYear = prevYear + 1
# If day value is <10, add a '0' in front of it
stringDay = getStringVersion(prevDay)
# If month value is <10, add a '0' in front of it
stringMonth = getStringVersion(prevMonth)
# Create the new array element
arrayElement = str(prevYear) + stringMonth + stringDay
# Add that new element to the end of the array
dateArray.append(arrayElement)
# Return that filled date array
return dateArray
# If a less-than-ten value has to be represented as a string, the API requires
# that it is in "05" format
def getStringVersion(value):
if value < 10:
stringValue = '0' + str(value)
else:
stringValue = str(value)
return stringValue
# Creates all date formats needed by program, stores them in dictionary
def createDateFormats(userDate):
# Gets ready to make date formats used by user
year = userDate[0:4]
month = userDate[4:6]
monthInt = int(month)
month2 = str(monthInt)
day = userDate[6:]
# If the leading character is a 0, take it out
if day[0] == '0':
day2 = day[1]
else:
day2 = day
# Three date formats needed by program
userDate2 = year + '-' + month + '-' + day
formalDate = month + '/' + day + '/' + year
formalDateSpreadsheet = month2 + '/' + day2 + '/' + year
# Create a dictionary full of all of the different date formats
date = {'inputDate': userDate,
'dashDate': userDate2,
'slashDate': formalDate,
'spreadDate': formalDateSpreadsheet}
# Returns that dictionary just made
return date
# Takes a DF and writes it to the folder with the file name
def fixWhiteSpaces(inPath, outPath):
# Open the inPath as input, and the outPath as the output
with open(inPath) as input, open(outPath, 'w', newline='') as output:
# Initialize csv writer
writer = csv.writer(output)
# Loops through every row in the file
for row in csv.reader(input):
# If the row exists in the input file, write it to the output file
if any(field.strip() for field in row):
writer.writerow(row)
# Delete the old file
os.remove(inPath)
# Wait 500 ms because windows likes getting itself confused and saying the
# file doesn't exist
time.sleep(.5)
# Make the outPath look exactly like the old inPath, effectively
# replacing it
os.rename(outPath, inPath)
# Correctly formats and stores the Panda Dataframes given to the function,
# should only call API when the file doesn't exist, to save API calls
def intradayDataCollection(category, auth2_client, apiDate, detail, dtype,
datatype, dateItem):
global callAmount
timeList = []
dataList = []
# Creates a filename and paths from values inputted to function
fileName = dateItem + '_' + datatype + '.csv'
basePath = os.path.join(os.getcwd(), 'data', datatype)
fullPath = os.path.join(basePath, fileName)
# Custom value if you want to rewrite a file that already exists for any
# reason, used to fix a large amount of errors
overwrite = False
# If the file doesn't exist, or overwrite is on, execute if
if not (os.path.isfile(fullPath)) or overwrite:
if dtype == 'Sleep':
fit_statsSLE = auth2_client.sleep(date=apiDate)
callAmount += 1
# Initialize lists used
stime_list = []
sval_list = []
# Parse data
try:
for i in fit_statsSLE['sleep'][0]['minuteData']:
stime_list.append(i['dateTime'])
sval_list.append(i['value'])
except:
stime_list = [0]
sval_list = [0]
# Creates a panda dataframe from the parsed dictionary
sleepDF = pd.DataFrame({'Time': stime_list,
'State': sval_list})
# Casts the state from one of the three options
sleepDF['Interpreted'] = sleepDF['State'].map({'2': 'Awake',
'3': 'Very Awake',
'1': 'Asleep'})
# Create a CSV file and save to it
sleepDF.to_csv(fullPath, index=True, header=True)
else:
# Make an API call with the inputted values from function call
StatsDict = auth2_client.intraday_time_series(category,
base_date=apiDate,
detail_level=detail)
callAmount += 1
# Parses the dictionary
for i in StatsDict[dtype]['dataset']:
dataList.append(i['value'])
timeList.append(i['time'])
# Creates a dataframe from the parsed data
df = pd.DataFrame({'Time': timeList, datatype: dataList, })
# Writes the data to a file
df.to_csv(fullPath, index=True, header=True)
# Output a message that the file already exists
fullMessage = 'Created, Moving On. . .'
else:
# Output a message that the file already exists
fullMessage = 'Already Exists, Skipping. . .'
# Outputs a message telling user what happened
spaceLength = (25 - len(fileName))*' '
print(' - ' + fileName + spaceLength + fullMessage)
# May be redundant?
# Takes a data structure and saves it to a csv
def writeToFile(df, name, folder, date, ind, head, overwrite):
# Creates necessary variable like path and name for the writing
fileName = date + '_' + name + '.csv'
basePath = os.path.join(os.getcwd(), 'data', folder)
fullPath = os.path.join(basePath, fileName)
fullMessage = ''
# If the file doesn't exist, or overwrite is on
if not (os.path.isfile(fullPath)) or overwrite:
df.to_csv(fullPath, index=ind, header=head)
fullMessage = 'Updated, Moving On. . .'
else:
fullMessage = 'Already Exists, Skipping. . .'
# Prints a message that the file already exists
spaceLength = (25 - len(fileName))*' '
print(' - ' + fileName + spaceLength + fullMessage)
# Function to tell the user how long ago they submitted a token refresh
def timeLastCalled(current, lastCall):
# Calculates the difference between the two calls
diff = int(current - lastCall)
# Converts to days by dividing by (hours in a day * minutes in an hour * seconds in a minute)
days = int(diff / (24 * 60 * 60))
# Subtract the value of days from the total difference
diff -= (days * 86400)
# Gets hours from remaining time by multiplying minutes/hour and seconds/minute
hours = int(diff / (60 * 60))
# Subtracts that value from the difference
diff -= (hours * 3600)
# Gets minutes by simply dividing by remaining seconds
minutes = int(diff / 60)
# Should result in 0
seconds = diff - (minutes * 60)
# Print the results of the previous calculations
print('\n-----------------------------------------------------------------------')
print('Last call was: ' + str(days) + ' Day(s), ' + str(hours) + ' Hour(s), ' +
str(minutes) + ' Minute(s), and ' + str(seconds) + ' Second(s) ago')
# Checks random file to see if it exists
_ = printLastSynced(os.listdir("data\\Heart\\"), True)
print('No refresh needed, continuing to call: ' if (
days == 0 and hours == 0 and minutes < 10) else 'Server call required')
print('-----------------------------------------------------------------------')
return None
# IN: Path to File, date['slashDate']
# OUT: False if data exists, True if not
def checkInputStatus(path, date, name, printBool):
# print('Opening ' + path + '\nas ' + str(date['spreadDate']) + ' ' + name)
# Open the file described in function call
with open(path, 'a'):
# Create a data frame from that file
tempDF = pd.read_csv(path)
# For the duration of the file
for i in tempDF['Date']:
# If the file already exists, say so, if not, do nothing
# print('if ' + str(type(i)) + ' == str and ' + str(i) + ' == ' + str(date['spreadDate']))
if type(i) == str and i == date['spreadDate']:
if printBool:
firstPart = date['inputDate'] + '_' + name + 'Summary'
spaceLength = (24 - len(firstPart))*' '
print(' - ' + firstPart + spaceLength +
' Already Added, Skipping. . .')
return False
# Not sure why I'm returning true
# print('DID NOT ENTER IF************')
if printBool:
firstPart = date['inputDate'] + '_' + name + 'Summary'
spaceLength = (24 - len(firstPart))*' '
print(' - ' + firstPart + spaceLength +
' Added, Moving On. . .')
return True
# Main:
if __name__ == "__main__":
main()