mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-07-06 08:26:12 +02:00
41 lines
1.3 KiB
Python
41 lines
1.3 KiB
Python
#!/usr/bin/env python
|
|
# encoding: utf-8
|
|
import yaml
|
|
|
|
from jrnl.install import CONFIG_FILE_PATH, save_config
|
|
from jrnl.util import load_config
|
|
from pathlib import Path
|
|
|
|
|
|
def get_tags_count(journal):
|
|
"""Returns a set of tuples (count, tag) for all tags present in the journal."""
|
|
# Astute reader: should the following line leave you as puzzled as me the first time
|
|
# I came across this construction, worry not and embrace the ensuing moment of enlightment.
|
|
tags = [tag for entry in journal.entries for tag in set(entry.tags)]
|
|
# To be read: [for entry in journal.entries: for tag in set(entry.tags): tag]
|
|
tag_counts = {(tags.count(tag), tag) for tag in tags}
|
|
return tag_counts
|
|
|
|
|
|
def oxford_list(lst):
|
|
"""Return Human-readable list of things obeying the object comma)"""
|
|
lst = sorted(lst)
|
|
if not lst:
|
|
return "(nothing)"
|
|
elif len(lst) == 1:
|
|
return lst[0]
|
|
elif len(lst) == 2:
|
|
return lst[0] + " or " + lst[1]
|
|
else:
|
|
return ", ".join(lst[:-1]) + ", or " + lst[-1]
|
|
|
|
|
|
def add_journal_to_config(name, path):
|
|
data = {}
|
|
try:
|
|
data = load_config(CONFIG_FILE_PATH)
|
|
except FileNotFoundError:
|
|
print("Config file not found.")
|
|
finally:
|
|
data["journals"][name] = path
|
|
save_config(data)
|