From 1ebc55c72a1a17293bbf4ad86e0177a10a794750 Mon Sep 17 00:00:00 2001 From: Joris Date: Sun, 17 Sep 2023 12:23:47 +0200 Subject: Make app packageable --- cli/library/__init__.py | 0 cli/library/command.py | 21 +++++++++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 cli/library/__init__.py create mode 100644 cli/library/command.py (limited to 'cli/library') diff --git a/cli/library/__init__.py b/cli/library/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/cli/library/command.py b/cli/library/command.py new file mode 100644 index 0000000..1c4d20c --- /dev/null +++ b/cli/library/command.py @@ -0,0 +1,21 @@ +import glob +import json +import os +import tomllib + +def run(books_library): + print(get(books_library)) + +def get(books_library): + metadatas = [] + + for path in glob.glob(f'{books_library}/**/metadata.toml', recursive=True): + with open(path, 'rb') as f: + directory = os.path.dirname(os.path.realpath(path)) + metadata = tomllib.load(f) + for p in glob.glob(f'{directory}/cover.*'): + metadata['cover'] = p + break + metadatas.append(metadata) + + return json.dumps(metadatas) -- cgit v1.2.3