2022-08-19 17:31:51 +05:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
from datetime import date
|
|
|
|
import os
|
|
|
|
import subprocess
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
base_dir = get_base_dir()
|
|
|
|
today = date.today()
|
|
|
|
edit_note(base_dir, today)
|
|
|
|
|
|
|
|
|
|
|
|
def get_base_dir() -> str:
|
|
|
|
"""
|
|
|
|
Creates the directories necessary for the program
|
|
|
|
to work, if they are not present.
|
|
|
|
|
|
|
|
Returns the path to the directory where data can be stored.
|
|
|
|
"""
|
2022-09-12 17:10:25 +05:00
|
|
|
base_dir = os.path.expanduser('~/.local/share/histd')
|
2022-08-24 22:43:57 +05:00
|
|
|
os.makedirs(base_dir, exist_ok=True)
|
|
|
|
return base_dir
|
2022-08-19 17:31:51 +05:00
|
|
|
|
|
|
|
|
|
|
|
def edit_note(base_dir: str, note_date: date):
|
|
|
|
"""
|
|
|
|
Creates the required directories and opens a text editor
|
|
|
|
so that the user can describe the day.
|
|
|
|
"""
|
|
|
|
# Create dirs (base_dir/year/month)
|
2022-08-24 22:43:57 +05:00
|
|
|
year = str(note_date.year)
|
|
|
|
month = f'{note_date.month:02}'
|
|
|
|
workdir = os.path.join(base_dir, year, month)
|
|
|
|
os.makedirs(workdir, exist_ok=True)
|
2022-08-19 17:31:51 +05:00
|
|
|
|
|
|
|
# Open file (base_dir/year/month/day.txt) with default editor
|
2022-08-24 22:43:57 +05:00
|
|
|
filename = f'{note_date.day:02}.txt'
|
|
|
|
path_to_file = os.path.join(workdir, filename)
|
2022-08-19 17:31:51 +05:00
|
|
|
editor = os.environ.get('EDITOR', 'nano')
|
2022-09-25 13:58:10 +05:00
|
|
|
subprocess.run([editor, path_to_file], check=True)
|
2022-08-19 17:31:51 +05:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|