Coverage for src/local_deep_research/research_library/zotero/__init__.py: 100%

3 statements  

« prev     ^ index     » next       coverage.py v7.15.1, created at 2026-07-19 23:35 +0000

1"""Zotero integration for the Research Library. 

2 

3Imports papers from a Zotero library/collection into the LDR document 

4library (where they are stored, text-extracted and RAG-indexed like any 

5other library document) and supports incremental background auto-sync. 

6""" 

7 

8from .client import ( 

9 ZoteroClient, 

10 ZoteroError, 

11 ZoteroAuthError, 

12 ZoteroTransientError, 

13) 

14from .sync_service import ZoteroSyncService 

15 

16__all__ = [ 

17 "ZoteroClient", 

18 "ZoteroError", 

19 "ZoteroAuthError", 

20 "ZoteroTransientError", 

21 "ZoteroSyncService", 

22]