Skip to content

main.python_run_bib

Classes

PythonRunBib

PythonRunBib(options)

Bases: BasicInput

Python bib.

Parameters:

Name Type Description Default
options dict[str, Any]

Options.

required

Attributes:

Name Type Description
choose_abbr_zotero_save str

Selected bibliography purpose ("abbr", "zotero", or "save")

Source code in pybibtexer/main/python_run_bib.py
def __init__(self, options: dict[str, Any]) -> None:
    options["choose_abbr_zotero_save"] = options.get("choose_abbr_zotero_save", "save")
    super().__init__(options)