You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
days = input("How many days do you want to go back? ")
location = input("Which location ('nyc' or 'ct')? ")
result = table.query(KeyConditionExpression=Key('location').eq(location) & Key('ts').gt(Decimal(time.time()-int(days)*86400)), ScanIndexForward=False) #by default the sort order is ascending
tracks = result['Items']
for track in tracks:
print("'{artist}' - '{title}' from '{album}' played from {location}".format(**track))