feat: allow creating a package with multiple decks.
This commit is contained in:
parent
4a129b60a3
commit
cc7f8283bb
1 changed files with 57 additions and 48 deletions
13
generate.py
13
generate.py
|
@ -55,7 +55,8 @@ def load_notes(
|
||||||
@click.option('--destructive/--no-destructive', 'destructive', type=bool, default=False, help='Perform write operations, which may end in data loss')
|
@click.option('--destructive/--no-destructive', 'destructive', type=bool, default=False, help='Perform write operations, which may end in data loss')
|
||||||
@click.option('--autogenerate/--no-autogenerate', 'autogenerate', type=bool, default=False, help='Generate missing ids, should probably be used with --destructive, to always use the same ones.')
|
@click.option('--autogenerate/--no-autogenerate', 'autogenerate', type=bool, default=False, help='Generate missing ids, should probably be used with --destructive, to always use the same ones.')
|
||||||
@click.option('--debug/--no-debug', 'debug', type=bool, default=False, help="Debug mode, don't write files")
|
@click.option('--debug/--no-debug', 'debug', type=bool, default=False, help="Debug mode, don't write files")
|
||||||
@click.argument('path', type=click.Path(path_type=pathlib.Path, dir_okay=True))
|
@click.option('--multi', 'multi', type=click.Path(path_type=pathlib.Path))
|
||||||
|
@click.argument('paths', type=click.Path(path_type=pathlib.Path, dir_okay=True), nargs=-1)
|
||||||
def main(
|
def main(
|
||||||
*,
|
*,
|
||||||
name: str | None,
|
name: str | None,
|
||||||
|
@ -69,8 +70,11 @@ def main(
|
||||||
destructive: bool,
|
destructive: bool,
|
||||||
autogenerate: bool,
|
autogenerate: bool,
|
||||||
debug: bool,
|
debug: bool,
|
||||||
path: pathlib.Path,
|
multi: pathlib.Path | None,
|
||||||
|
paths: list[pathlib.Path],
|
||||||
):
|
):
|
||||||
|
decks = []
|
||||||
|
for path in paths:
|
||||||
match = RE_DIRNAME.match(path.name)
|
match = RE_DIRNAME.match(path.name)
|
||||||
if match:
|
if match:
|
||||||
model_name = model_name or match.group(1)
|
model_name = model_name or match.group(1)
|
||||||
|
@ -115,8 +119,13 @@ def main(
|
||||||
for n in notes:
|
for n in notes:
|
||||||
deck.add_note(n)
|
deck.add_note(n)
|
||||||
click.echo(f'added {len(notes)} notes')
|
click.echo(f'added {len(notes)} notes')
|
||||||
|
decks += [deck]
|
||||||
if not debug:
|
if not debug:
|
||||||
genanki.Package(deck).write_to_file(path.parent / (path.name + '.apkg'))
|
genanki.Package(deck).write_to_file(path.parent / (path.name + '.apkg'))
|
||||||
|
if not debug and multi:
|
||||||
|
if multi.suffix != '.apkg':
|
||||||
|
click.echo('WARNING: destination file does not have extension ".apkg"')
|
||||||
|
genanki.Package(decks).write_to_file(multi)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue