Move logic to main function

This commit is contained in:
Marty Oehme 2023-02-21 09:03:22 +01:00
parent ae495af1bc
commit d78c5dd64a
Signed by: Marty
GPG key ID: EDBF2ED917B2EF6A

View file

@ -6,7 +6,6 @@
# annotations as 'csv' format and then point the script to the # annotations as 'csv' format and then point the script to the
# resulting file. # resulting file.
import sys import sys
import csv
import papis.api import papis.api
import papis.commands.list import papis.commands.list
import papis.database import papis.database
@ -14,15 +13,24 @@ import re
import subprocess import subprocess
# use argument passed to command as file or default file here # use argument passed to command as file or default file here
fpath = (
sys.argv[1]
if len(sys.argv) > 1
else "/home/marty/Nextcloud/Personal/Backups/Journal.csv"
)
db = papis.database.get()
def format_entry(row) -> str:
text = f"> {row['HighlightText']}"
if row["EntryText"]:
if text:
text += "\n"
else:
text = "> "
text += f"{row['EntryText']}"
return text
def main(fpath, db):
notes = {} notes = {}
with open(fpath) as f: with open(fpath) as f:
import csv
csv = csv.DictReader(f) csv = csv.DictReader(f)
title_strip_pattern = re.compile(r"([^\s\w]|_)+") title_strip_pattern = re.compile(r"([^\s\w]|_)+")
@ -35,7 +43,9 @@ with open(fpath) as f:
if old_title != row["Title"]: if old_title != row["Title"]:
old_title = row["Title"] old_title = row["Title"]
documents = db.query(f"author:({row['Author']}) title:({title_stripped})") documents = db.query(
f"author:({row['Author']}) title:({title_stripped})"
)
if not documents: if not documents:
print( print(
f"No papis entry found for Marvin entry - {row['Author']}: {row['Title']}.\nPlease manually create." f"No papis entry found for Marvin entry - {row['Author']}: {row['Title']}.\nPlease manually create."
@ -43,13 +53,10 @@ with open(fpath) as f:
continue continue
note_file = papis.commands.list.run(notes=True, documents=documents) note_file = papis.commands.list.run(notes=True, documents=documents)
if not note_file: if not note_file:
print(f"Found reference entry but no note file for - {row['Author']}: {row['Title']}.") print(
if ( f"Found reference entry but no note file for - {row['Author']}: {row['Title']}."
input(
f"Create note file now? [y/N] "
) )
== "y" if input(f"Create note file now? [y/N] ") == "y":
):
output = subprocess.run( output = subprocess.run(
["papis", "edit", "-n"], capture_output=True, shell=True ["papis", "edit", "-n"], capture_output=True, shell=True
) )
@ -60,20 +67,13 @@ with open(fpath) as f:
continue continue
note_file = str(note_file[0]) note_file = str(note_file[0])
text = f"> {row['HighlightText']}" text = format_entry(row)
if row["EntryText"]:
if text:
text += "\n"
else:
text = "> "
text += f"{row['EntryText']}"
if note_file and text: if note_file and text:
if not note_file in notes.keys(): if not note_file in notes.keys():
notes[note_file] = [] notes[note_file] = []
notes[note_file].append(text) notes[note_file].append(text)
# write to notes # write to notes
for f, entries in notes.items(): for f, entries in notes.items():
if f: if f:
@ -86,3 +86,14 @@ for f, entries in notes.items():
note.write(f"{entry}\n\n") note.write(f"{entry}\n\n")
num_added += 1 num_added += 1
print(f"Added {num_added} entries to it.") print(f"Added {num_added} entries to it.")
if __name__ == "__main__":
fpath = (
sys.argv[1]
if len(sys.argv) > 1
else "/home/marty/Nextcloud/Personal/Backups/Journal.csv"
)
db = papis.database.get()
main(fpath, db)