Skip to main content

A comprehensive Python library for working with Logseq knowledge graphs

Project description

๐Ÿ Logseq Python Library

The most comprehensive Python library for Logseq knowledge graph interaction

Transform your Logseq workflow with programmatic access to every major feature. From basic note-taking to advanced task management, academic research, and knowledge graph analytics - this library supports it all.

Python 3.8+ MIT License GitHub Stars

โœจ Comprehensive Feature Support

๐ŸŽฏ Task Management & Workflows

  • โœ… Complete Task System: TODO, DOING, DONE, LATER, NOW, WAITING, CANCELLED, DELEGATED, IN-PROGRESS
  • โœ… Priority Levels: A, B, C with full parsing and filtering
  • โœ… Scheduling: SCHEDULED dates with time and repeaters (+1w, +3d)
  • โœ… Deadlines: DEADLINE tracking with overdue detection
  • โœ… Workflow Analytics: Completion rates, productivity metrics

๐Ÿ“ Advanced Content Types

  • โœ… Code Blocks: Language detection, syntax highlighting support
  • โœ… Mathematics: LaTeX/Math parsing ($$math$$, \(inline\))
  • โœ… Queries: {{query}} and #+begin_query support
  • โœ… Headings: H1-H6 hierarchical structure
  • โœ… References: ((block-id)) linking and {{embed}} support
  • โœ… Properties: Advanced property parsing and querying

๐Ÿ—‚๏ธ Organization & Structure

  • โœ… Namespaces: project/backend hierarchical organization
  • โœ… Templates: Template variables {{variable}} parsing
  • โœ… Aliases: Page alias system with [[link]] support
  • โœ… Whiteboards: .whiteboard file detection
  • โœ… Hierarchies: Parent/child page relationships

๐Ÿ“Š Knowledge Graph Analytics

  • โœ… Graph Insights: Connection analysis, relationship mapping
  • โœ… Content Statistics: Block type distribution, tag usage
  • โœ… Productivity Metrics: Task completion trends
  • โœ… Workflow Summaries: Advanced task analytics

๐Ÿ” Powerful Query System

  • โœ… 25+ Query Methods: Task states, priorities, content types
  • โœ… Date Filtering: Scheduled, deadline, creation date queries
  • โœ… Content Filtering: Code language, math content, headings
  • โœ… Relationship Queries: Block references, embeds, backlinks
  • โœ… Advanced Combinations: Chain multiple filters fluently

Installation

pip install logseq-py

Or for development:

git clone https://github.com/yourusername/logseq-python.git
cd logseq-python
pip install -e .

๐Ÿš€ Quick Start

Basic Setup

from logseq_py import LogseqClient, TaskState, Priority

# Initialize client with your Logseq graph directory
client = LogseqClient("/path/to/your/logseq/graph")
graph = client.load_graph()

๐Ÿ“‹ Task Management

# Find all high-priority tasks
urgent_tasks = client.query().blocks().has_priority(Priority.A).execute()

# Get overdue tasks
from datetime import date
overdue = client.query().blocks().has_deadline().custom_filter(
    lambda block: block.deadline.date < date.today()
).execute()

# Find completed tasks
completed = client.query().blocks().has_task_state(TaskState.DONE).execute()

# Get workflow summary
workflow = client.graph.get_workflow_summary()
print(f"Completion rate: {workflow['completed_tasks']}/{workflow['total_tasks']}")

๐Ÿ’ป Code & Content Analysis

# Find all Python code blocks
python_code = client.query().blocks().is_code_block(language="python").execute()

# Get math/LaTeX content
math_blocks = client.query().blocks().has_math_content().execute()

# Find all headings
headings = client.query().blocks().is_heading().execute()

# Get blocks with references
linked_blocks = client.query().blocks().has_block_references().execute()

๐Ÿ“Š Advanced Analytics

# Get comprehensive graph insights
insights = client.graph.get_graph_insights()

# Analyze namespaces
for namespace in client.graph.get_all_namespaces():
    pages = client.graph.get_pages_by_namespace(namespace)
    print(f"{namespace}/: {len(pages)} pages")

# Find most connected pages
for page_name, connections in insights['most_connected_pages'][:5]:
    print(f"{page_name}: {connections} backlinks")

โœ๏ธ Content Creation

# Add journal entry with task
client.add_journal_entry("TODO Review project documentation #urgent")

# Create a structured page
content = """# Project Planning
- TODO Set up initial framework [#A]
  SCHEDULED: <2024-01-15 Mon>
- Code review checklist
  - [ ] Security audit
  - [ ] Performance testing"""

client.create_page("Project Alpha", content)

๐ŸŽฏ Real-World Use Cases

๐Ÿ“ˆ Project Management

  • Track tasks across multiple projects with priorities and deadlines
  • Generate productivity reports and completion metrics
  • Automate workflow status updates and notifications
  • Analyze team performance and bottlenecks

๐Ÿ”ฌ Academic Research

  • Parse and analyze LaTeX mathematical content
  • Extract and organize research notes with citations
  • Track paper progress and review status
  • Generate bibliographies and reference networks

๐Ÿ’ป Software Development

  • Document code examples with syntax highlighting
  • Track bugs and feature requests with priority levels
  • Organize documentation by namespace (frontend/backend)
  • Generate code statistics and language usage reports

๐Ÿ“š Knowledge Management

  • Build comprehensive knowledge graphs with relationships
  • Track learning progress with spaced repetition
  • Organize information hierarchically with namespaces
  • Generate insights about information consumption patterns

๐ŸŽจ Creative Work

  • Organize creative projects with visual whiteboards
  • Track inspiration and reference materials
  • Manage creative workflows with custom task states
  • Analyze creative output patterns and productivity

๐Ÿ› ๏ธ Advanced Examples

Task Automation

# Find all overdue high-priority tasks and generate a report
from datetime import date, timedelta

overdue_urgent = (client.query()
    .blocks()
    .is_task()
    .has_priority(Priority.A)
    .has_deadline()
    .custom_filter(lambda b: b.deadline.date < date.today())
    .execute())

for task in overdue_urgent:
    days_overdue = (date.today() - task.deadline.date).days
    print(f"โš ๏ธ OVERDUE {days_overdue} days: {task.content}")

Content Analysis

# Analyze your coding activity across languages
code_stats = {}
for block in client.query().blocks().is_code_block().execute():
    lang = block.code_language or 'unknown'
    code_stats[lang] = code_stats.get(lang, 0) + 1

print("๐Ÿ“Š Code block distribution:")
for lang, count in sorted(code_stats.items(), key=lambda x: x[1], reverse=True):
    print(f"  {lang}: {count} blocks")

Knowledge Graph Analysis

# Find your most referenced pages (knowledge hubs)
page_refs = {}
for block in client.query().blocks().has_block_references().execute():
    for ref in block.referenced_blocks:
        page_refs[ref] = page_refs.get(ref, 0) + 1

print("๐Ÿ”— Most referenced content:")
for ref, count in sorted(page_refs.items(), key=lambda x: x[1], reverse=True)[:10]:
    print(f"  {ref}: {count} references")

๐Ÿ“– Documentation

Requirements

  • Python 3.8+
  • Logseq graph (local directory)

License

This project is licensed under the MIT License - see the LICENSE file for details.

The MIT License is a permissive license that allows for commercial use, modification, distribution, and private use, with the only requirement being that the license and copyright notice must be included with any substantial portions of the software.

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

logseq_python-0.4.0.tar.gz (186.2 kB view details)

Uploaded Source

Built Distribution

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

logseq_python-0.4.0-py3-none-any.whl (143.3 kB view details)

Uploaded Python 3

File details

Details for the file logseq_python-0.4.0.tar.gz.

File metadata

  • Download URL: logseq_python-0.4.0.tar.gz
  • Upload date:
  • Size: 186.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.6

File hashes

Hashes for logseq_python-0.4.0.tar.gz
Algorithm Hash digest
SHA256 fc7dbd12b5f2a1c9e6ccd8bd9a10f24e221effa2282d4a275e486ae75409f447
MD5 6fb2d7717a9d71aa3194c8d499f23bba
BLAKE2b-256 4919cc3e1391981116ba1fc97c0dafc12a06713a1bcf3d093c7be92780089ebe

See more details on using hashes here.

File details

Details for the file logseq_python-0.4.0-py3-none-any.whl.

File metadata

  • Download URL: logseq_python-0.4.0-py3-none-any.whl
  • Upload date:
  • Size: 143.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.6

File hashes

Hashes for logseq_python-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 74cc56f7e96d8604ae1d062e332f08d2fa64f5f18efd5259f1d1bda878e8ffc5
MD5 7de1bddd350896d408f0c1a488f807fb
BLAKE2b-256 ff3cee9a7c09c6e0f978c583910f99cfd3963e4f6cead47d7e34c67af7284193

See more details on using hashes here.

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