Skip to main content

A Python library for syncing and managing Pinboard bookmarks

Project description

pinboard-tools

PyPI version Python versions License

A Python library for syncing and managing Pinboard bookmarks.

Features

  • Efficient incremental sync with Pinboard.in API (only fetches changed bookmarks)
  • Bidirectional sync with configurable conflict resolution strategies
  • SQLite database with normalized tag storage and full-text search
  • Thread-safe database singleton with proper locking
  • Error recovery for failed sync operations with retry support
  • Tag analysis and similarity detection
  • Tag consolidation for merging duplicate tags
  • Exponential backoff on API rate limits with max retry protection
  • Rate limiting and optimized API usage
  • Chunking utilities for LLM processing

Installation

pip install pinboard-tools

Quick Start

from pinboard_tools import (
    init_database,
    get_session,
    BidirectionalSync,
)

# Initialize database
init_database("bookmarks.db")

# Create sync engine
db = get_session()
sync = BidirectionalSync(db=db, api_token="your-pinboard-api-token")

# Perform efficient incremental sync
stats = sync.sync()
print(f"Local to remote: {stats['local_to_remote']}")
print(f"Remote to local: {stats['remote_to_local']}")
print(f"Conflicts resolved: {stats['conflicts_resolved']}")

Core Components

Database Models

  • Bookmark - Bookmark entity with all Pinboard fields
  • Tag - Tag entity with normalization
  • BookmarkTag - Many-to-many relationship
  • SyncStatus - Track sync state (synced, pending_local, pending_remote, conflict, error)

Sync Engine

  • PinboardAPI - API client with rate limiting, exponential backoff, and JSON error handling
  • BidirectionalSync - Efficient incremental sync with conflict resolution, error recovery, and remote-to-local mirroring through upsert_pinboard_post
  • upsert_pinboard_post - Mirror a Pinboard API post into the local database

Tag Analysis

  • TagSimilarityDetector - Find similar tags
  • TagConsolidator - Merge duplicate tags

Utilities

  • chunk_bookmarks_for_llm - Prepare data for LLM processing
  • DateTime helpers for Pinboard format

Database Schema

The library uses a normalized SQLite schema with full-text search:

-- Core tables (see pinboard_tools/data/schema.sql for complete structure)
bookmarks (href, description, extended, hash, time, sync_status, ...)
tags (name)
bookmark_tags (bookmark_id, tag_id)
sync_metadata (key, timestamp)

-- Convenience view
bookmarks_with_tags  -- joins bookmarks with their tags as space-separated string

API Reference

Initialization

# Initialize database with schema
init_database(db_path: str)

# Get database session
with get_session() as session:
    # Use session for queries

Syncing

# Create sync client
sync = BidirectionalSync(db=session, api_token="your-token")

# Efficient incremental sync (only fetches changed bookmarks)
stats = sync.sync()

# Sync only local changes to remote
stats = sync.sync(direction=SyncDirection.LOCAL_TO_REMOTE)

# Sync only remote changes to local
stats = sync.sync(direction=SyncDirection.REMOTE_TO_LOCAL)

# Retry bookmarks that previously failed to sync
retried = sync.retry_failed_bookmarks()
if retried > 0:
    stats = sync.sync()  # re-sync the retried bookmarks

Local mirroring

Use upsert_pinboard_post when another application has already written a bookmark to Pinboard and wants to keep the local SQLite database in step without running a full sync:

from pinboard_tools import PinboardAPI, get_session, init_database, upsert_pinboard_post

init_database("bookmarks.db")
db = get_session()
api = PinboardAPI("your-token")

api.add_post(
    url="https://example.com",
    description="Example",
    extended="A useful example.",
    tags="examples docs",
)
posts = api.get_post(url="https://example.com")
if posts:
    upsert_pinboard_post(db, posts[0])

The mirrored bookmark is marked synced, tags are normalized through the same tag tables as sync, and last_synced_at is updated.

Tag Analysis

# Find similar tags
detector = TagSimilarityDetector(session)
similar_groups = detector.find_similar_tags(threshold=0.8)

# Consolidate tags
consolidator = TagConsolidator(session)
consolidator.consolidate_tags(old_tag="python3", new_tag="python")

License

Apache License 2.0 - see LICENSE file for details

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pinboard_tools-0.1.11.tar.gz (105.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pinboard_tools-0.1.11-py3-none-any.whl (33.1 kB view details)

Uploaded Python 3

File details

Details for the file pinboard_tools-0.1.11.tar.gz.

File metadata

  • Download URL: pinboard_tools-0.1.11.tar.gz
  • Upload date:
  • Size: 105.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pinboard_tools-0.1.11.tar.gz
Algorithm Hash digest
SHA256 f9a342494504b2eaecb58fb5cc8e0eacfa673981b726c47c8888a3afe0ce3013
MD5 37ca7a627d97f54bc8efc9eaefe8a41c
BLAKE2b-256 7491b449ee2e62be58d0b9ea5294837a361c93320de99e829a651984ea97ed8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pinboard_tools-0.1.11.tar.gz:

Publisher: publish.yml on kevinmcmahon/pinboard-tools

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pinboard_tools-0.1.11-py3-none-any.whl.

File metadata

File hashes

Hashes for pinboard_tools-0.1.11-py3-none-any.whl
Algorithm Hash digest
SHA256 28a9aab63788bb92c47feb07960ed3f301528de1985cb66ea49f2b7b13d6e296
MD5 347548b385131b284707d7138bd76e1b
BLAKE2b-256 826b0aa62015d6f6357b26f299952507c166f06ac53f2aa5b5b540e87dc85d2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pinboard_tools-0.1.11-py3-none-any.whl:

Publisher: publish.yml on kevinmcmahon/pinboard-tools

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page