()
| 54 | |
| 55 | |
| 56 | def 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 | |
| 68 | def main() -> None: |