Module importer_shared_script
Function: importer_shared_script
- importer_shared_script(ext_name)
A context manager that manages adding
ImporterSharedScript
to thesys.meta_path
.This context manager ensures that the resource is properly acquired and released.
The importer will only search in the
Scripts/python
folder of the LibreOffice Shared Libraries. On Linux this is typically/usr/lib/libreoffice/share/Scripts/python
.- Returns:
None:
Example:
In this example the context manager is used to import a module from the shared library.
from __future__ import annotations from pathlib import Path from ooodev.calc import CalcDoc from ooodev.loader import Lo from ooodev.uno_helper.importer import importer_shared_script def main(): _ = Lo.load_office(connector=Lo.ConnectPipe()) doc = None try: doc = CalcDoc.create_doc() with importer_shared_script(): import Capitalise print("Done") except Exception as e: print(f"Error: {e}") finally: if doc: doc.close() Lo.close_office() if __name__ == "__main__": main()
In this example, a
ImporterSharedScript
instance is automatically managed, ensuring proper cleanup.