Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# zotlib

Tools for extracting and formatting bibliographic data from Zotero databases.
Tools for extracting and formatting bibliographic data from Zotero 8 databases.

Reads directly from Zotero's local SQLite database — no API key needed. Export collections as CSV or APA-formatted references, generate PDF cover images with thumbnails, and extract annotated PDFs with baked-in highlights and markdown notes. Includes a CLI for common workflows and a Python API for custom pipelines.
Reads directly from Zotero's local SQLite database — no API key needed. Export collections as CSV or APA-formatted references, generate PDF cover images with thumbnails, and extract annotated PDFs with baked-in highlights and markdown notes. Includes a CLI for common workflows and a Python API for custom pipelines. Built for Zotero 8; older versions are untested and likely incompatible due to schema differences.

## Project Structure

Expand All @@ -29,6 +29,10 @@ zotlib/

## Installation

```bash
uv add zotlib
```

From source:

```bash
Expand All @@ -37,10 +41,10 @@ cd zotlib
uv sync
```

As a dependency:
From a specific branch:

```bash
uv add git+https://github.com/gitronald/zotlib.git
uv add git+https://github.com/gitronald/zotlib.git@dev
```

## Configuration
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "zotlib"
version = "0.4.2"
version = "0.4.3"
description = "Extract and format bibliographic data from Zotero databases"
readme = "README.md"
requires-python = ">=3.10"
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion zotlib/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Zotlib - Extract and format bibliographic data from Zotero databases."""

__version__ = "0.4.2"
__version__ = "0.4.3"

from zotlib.database import ZoteroDatabase
from zotlib.extractors import (
Expand Down
Loading