habitmove/habitmove/nomie.py

44 lines
1.2 KiB
Python
Raw Normal View History

2021-08-26 19:57:49 +00:00
#!/usr/bin/env python
import json
def load_file(filename):
with open(filename) as f:
nomie_data = json.load(f)
return nomie_data
2021-08-26 21:13:56 +00:00
# generate a yes/no cli question with a default answer
2021-08-26 19:57:49 +00:00
def confirmation_question(question, default_no=True):
choices = " [y/N]: " if default_no else " [Y/n]: "
default_answer = "n" if default_no else "y"
reply = str(input(question + choices)).lower().strip() or default_answer
if reply[0] == "y":
return True
if reply[0] == "n":
return False
else:
return False if default_no else True
2021-08-26 21:13:56 +00:00
# display stats and ask user to confirm if they seem okay
2021-08-26 19:57:49 +00:00
def verify_continue(data):
trackers = ""
for t in data["trackers"]:
trackers += t + ", "
2021-08-27 08:11:00 +00:00
print(f"Exporting from nomie {data['nomie']['number']}:")
2021-08-26 19:57:49 +00:00
print(f"Found trackers: {trackers}")
2021-08-27 08:11:00 +00:00
print(f"Found events: {len(data['events'])} entries.")
2021-08-26 19:57:49 +00:00
if not confirmation_question("Do you want to continue?", default_no=False):
print("Aborted.")
exit(0)
2021-12-02 17:54:56 +00:00
# return the data belonging to nomie
def get_data(file, interactive):
nomie_data = load_file(file)
if interactive:
verify_continue(nomie_data)
return nomie_data