forked from mirrors/autodoist
Better refresh of data
parent
d3f6745667
commit
8d4a762d57
|
@ -363,12 +363,12 @@ def main():
|
|||
logging.basicConfig(level=logging.INFO)
|
||||
response = GetResponse()
|
||||
json_data = json.loads(response.read())
|
||||
response = GetLabels()
|
||||
json_data['Labels'] = json.loads(response.read())
|
||||
response = GetProjects()
|
||||
json_data['Projects'] = json.loads(response.read())
|
||||
logging.debug("Got initial data: %s", json_data)
|
||||
while True:
|
||||
response = GetLabels()
|
||||
json_data['Labels'] = json.loads(response.read())
|
||||
response = GetProjects()
|
||||
json_data['Projects'] = json.loads(response.read())
|
||||
logging.debug("Got initial data: %s", json_data)
|
||||
logging.info("*** Retrieving Data")
|
||||
singleton = TodoistData(json_data)
|
||||
logging.info("*** Data built")
|
||||
|
|
Loading…
Reference in New Issue