Metadata-Version: 2.4
Name: notion-to-json
Version: 1.0.0
Summary: Export Notion pages and databases to JSON with filtering and advanced options
Project-URL: Homepage, https://github.com/jonatkinson/notion-to-json
Project-URL: Repository, https://github.com/jonatkinson/notion-to-json
Project-URL: Issues, https://github.com/jonatkinson/notion-to-json/issues
Author-email: Jon Atkinson <jon@jonatkinson.co.uk>
Maintainer-email: Jon Atkinson <jon@jonatkinson.co.uk>
License: MIT
License-File: LICENSE
Keywords: api,backup,export,json,notion
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Office/Business
Classifier: Topic :: Utilities
Requires-Python: >=3.13
Requires-Dist: click>=8.1.7
Requires-Dist: httpx>=0.27.0
Requires-Dist: python-dotenv>=1.0.0
Requires-Dist: rich>=13.7.0
Description-Content-Type: text/markdown

# Notion to JSON Exporter

[![PyPI version](https://badge.fury.io/py/notion-to-json.svg)](https://badge.fury.io/py/notion-to-json)
[![Test](https://github.com/jonatkinson/notion-to-json/actions/workflows/test.yml/badge.svg)](https://github.com/jonatkinson/notion-to-json/actions/workflows/test.yml)
[![Python 3.13+](https://img.shields.io/badge/python-3.13+-blue.svg)](https://www.python.org/downloads/)

Export your entire Notion workspace to JSON format with a simple command-line tool.

## Features

- Export all pages and databases from your Notion workspace
- Systematic traversal of nested content
- Progress tracking with rich terminal UI
- JSON format preserving Notion structure
- Secure API key handling via CLI or environment variables
- Rate-limited API calls to respect Notion's limits

## Installation

### From PyPI

```bash
# Using pip
pip install notion-to-json

# Using uv
uv pip install notion-to-json

# Using uvx (no installation needed)
uvx notion-to-json --api-key YOUR_API_KEY
```

### From source

```bash
# Clone the repository
git clone https://github.com/jonatkinson/notion-to-json.git
cd notion-to-json

# Install dependencies
uv sync
```

## Usage

### Basic usage

```bash
# Export entire workspace (default)
export NOTION_API_KEY="your-integration-token"
notion-to-json

# Using command-line flag
notion-to-json --api-key "your-integration-token"

# Specify output directory
notion-to-json --output-dir ./my-exports

# Export creates:
# - exports/pages/       # Individual page JSON files
# - exports/databases/   # Individual database JSON files  
# - exports/manifest.json # Export summary and metadata

# Test API connection only
notion-to-json --test --api-key "your-integration-token"

# Search and list all pages and databases
notion-to-json --search --api-key "your-integration-token"

# List ALL pages (not just first 10) and databases
notion-to-json --list-all --api-key "your-integration-token"

# Save search results to a JSON file
notion-to-json --search --save-list "notion-content.json" --api-key "your-integration-token"

# Retrieve specific page content
notion-to-json --get-page "page-id-here" --api-key "your-integration-token"

# Save page content to file
notion-to-json --get-page "page-id-here" -o "page-content.json" --api-key "your-integration-token"

# Retrieve specific database content
notion-to-json --get-database "database-id-here" --api-key "your-integration-token"

# Save database content to file  
notion-to-json --get-database "database-id-here" -o "database-content.json" --api-key "your-integration-token"
```

### Advanced options

```bash
# Verbose logging
notion-to-json --verbose

# Quiet mode (errors only)
notion-to-json --quiet

# Log to file
notion-to-json --log-file export.log

# Export only pages
notion-to-json --filter-type page

# Export only databases
notion-to-json --filter-type database

# Filter by title pattern (regex)
notion-to-json --include-pattern "Project.*2024"
notion-to-json --exclude-pattern "Archive|Draft"

# Export items modified after a date
notion-to-json --modified-after "2024-01-01"

# Combine filters
notion-to-json --filter-type page --include-pattern "Meeting" --modified-after "2024-06-01"
```

### Getting a Notion API Key

1. Go to https://www.notion.so/my-integrations
2. Create a new integration
3. Copy the "Internal Integration Token"
4. Share your Notion pages/databases with the integration

## Development

### Setup

```bash
# Install development dependencies
make install

# Run linting
make lint

# Format code
make format

# Run tests
make test

# Run all checks
make dev
```

### Project Structure

```
notion-to-json/
├── src/
│   └── notion_to_json/
│       ├── cli.py          # CLI interface
│       ├── client.py       # Notion API client
│       ├── models.py       # Data models
│       └── exporter.py     # JSON export logic
└── tests/                  # Test suite
```

## Roadmap

- [x] Phase 1: Project setup and structure
- [x] Phase 2: Notion API client implementation
- [x] Phase 3: Content discovery (pages & databases)
- [x] Phase 4: Full content retrieval
- [x] Phase 5: JSON export functionality
- [x] Phase 6: CLI enhancements and distribution

## License

MIT