MCPcopy Create free account
hub / github.com/917Dhj/DeepPaperNote / find_local_zotero_hints

Function find_local_zotero_hints

scripts/check_environment.py:56–65  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

54
55
56def find_local_zotero_hints() -> list[str]:
57 candidates = [
58 Path.home() / "Zotero",
59 Path.home() / "Library" / "Application Support" / "Zotero",
60 ]
61 hits: list[str] = []
62 for path in candidates:
63 if path.exists():
64 hits.append(str(path.resolve()))
65 return hits
66
67
68def main() -> None:

Callers 1

mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected