Metadata-Version: 2.4
Name: pakt
Version: 0.3.0
Summary: Fast, efficient Plex-Trakt sync using batch API operations
Project-URL: Repository, https://github.com/MikeSiLVO/pakt
Author: MikeSiLVO
License: MIT
Keywords: media,plex,scrobble,sync,trakt
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Multimedia :: Video
Requires-Python: >=3.11
Requires-Dist: aiosqlite>=0.19.0
Requires-Dist: apscheduler>=3.10.0
Requires-Dist: click>=8.1.0
Requires-Dist: fastapi>=0.110.0
Requires-Dist: httpx>=0.27.0
Requires-Dist: jinja2>=3.1.0
Requires-Dist: plexapi>=4.15.0
Requires-Dist: pydantic-settings>=2.0.0
Requires-Dist: pydantic>=2.0.0
Requires-Dist: rich>=13.0.0
Requires-Dist: uvicorn>=0.27.0
Provides-Extra: dev
Requires-Dist: pytest-asyncio>=0.23.0; extra == 'dev'
Requires-Dist: pytest>=8.0.0; extra == 'dev'
Requires-Dist: ruff>=0.3.0; extra == 'dev'
Provides-Extra: tray
Requires-Dist: pillow>=10.0.0; extra == 'tray'
Requires-Dist: pystray>=0.19.0; extra == 'tray'
Description-Content-Type: text/markdown

# <img src="src/pakt/assets/icon.png" width="32" alt=""> Pakt

Sync watched status, ratings, and collections between Plex and Trakt.

## Installation

```bash
pip install pakt
```

Or with pipx (isolated environment):
```bash
pipx install pakt
```

With system tray support (Windows):
```bash
pip install pakt[tray]
```

## Quick Start

```bash
pakt setup    # Interactive setup wizard (links Plex via PIN)
pakt sync     # Run sync
```

## Commands

See the [CLI Reference](https://github.com/MikeSiLVO/Pakt/blob/main/docs/cli.md) for detailed options and examples.

### Setup & Authentication

```bash
pakt setup              # Link Plex account via PIN authentication
pakt setup --token      # Manual token entry instead of PIN
pakt login              # Authenticate with Trakt
pakt logout             # Clear Trakt authentication
pakt status             # Show configuration status
```

### Server Management

```bash
pakt servers discover   # List available Plex servers from your account
pakt servers list       # Show configured servers
pakt servers add NAME   # Add server from discovered list
pakt servers add NAME --url URL --token TOKEN  # Add server manually
pakt servers remove NAME
pakt servers enable NAME
pakt servers disable NAME
pakt servers test NAME  # Test server connection
```

### Sync

```bash
pakt sync                    # Sync all enabled servers
pakt sync --server NAME      # Sync specific server(s) only
pakt sync -s NAME -s NAME2   # Sync multiple specific servers
pakt sync --dry-run          # Preview without making changes
pakt sync --verbose          # Show detailed item list
pakt sync --collection-only  # Only sync collection (skip watched, ratings, watchlist)
pakt sync --no-movies        # Skip movie sync
pakt sync --no-shows         # Skip show/episode sync
pakt sync --fix-collection-dates  # Re-send all collection items with correct dates from Plex
```

### Libraries

```bash
pakt libraries               # Show library selection for default server
pakt libraries --all         # Sync all libraries (clear selection)
pakt libraries -m "Movies"   # Select specific movie library
pakt libraries -s "TV Shows" # Select specific show library
```

### Web Interface

```bash
pakt serve                   # Start web UI at localhost:7258
pakt serve --host 0.0.0.0    # Listen on all interfaces
pakt serve --port 9000       # Use custom port
pakt serve --tray            # With system tray icon (Windows)
pakt serve --no-tray         # Without system tray (default)
```

## Web Interface

Start the web UI:
```bash
pakt serve
```

Open http://localhost:7258 in your browser.

### Views

**Sync** - Run manual syncs with real-time progress and console output. Use "Dry Run" to preview changes without applying them. Enable "Verbose" to see individual items being synced.

**Stats** - Shows connection status for Trakt and all configured Plex servers, library counts, and last sync results.

**Settings** - Configure sync options, manage servers, and set up scheduling.

### Sync Options

Options are organized by direction:
- **Plex → Trakt**: Watched, Ratings, Collection, Watchlist
- **Trakt → Plex**: Watched, Ratings, Watchlist

Global defaults can be overridden per-server in the Server Settings section.

### Scheduled Sync

Enable automatic syncing at a set interval (in hours).

**Important**: The scheduler only runs while the web server is running. If you stop `pakt serve`, scheduled syncs will not occur. For persistent scheduling, run the server in the background (see Background Mode below).

### Server Settings

Each Plex server has independent configuration:
- **Libraries**: Select which movie/show libraries to sync (empty = all)
- **Sync Options**: Override global defaults with per-server settings (Global/On/Off)

## Background Mode (Windows)

Run without a console window:
```bash
pythonw -m pakt serve --tray
```

See the [Automation Guide](https://github.com/MikeSiLVO/Pakt/blob/main/docs/automation.md) for startup configuration and scheduled tasks on Windows, macOS, and Linux.

## Docker

```bash
docker-compose up -d
```

Web UI at http://localhost:7258. Config persists in the `pakt-config` volume.

**First-time setup**: Run interactively to authenticate:
```bash
docker-compose run --rm pakt pakt setup
docker-compose run --rm pakt pakt login
```

See the [Docker Guide](https://github.com/MikeSiLVO/Pakt/blob/main/docs/docker.md) for networking, volumes, and advanced configuration.

## What Gets Synced

| Data | Plex → Trakt | Trakt → Plex |
|------|:------------:|:------------:|
| Watched status | ✓ | ✓ |
| Ratings | ✓ | ✓ |
| Collection | ✓ | - |
| Watchlist | ✓ | ✓ |

Collection sync includes media info (resolution, HDR, audio codec) and uses Plex's `addedAt` date for `collected_at` timestamps.

## Multi-Server Support

Pakt supports syncing multiple Plex servers to a single Trakt account:

1. Run `pakt setup` to link your Plex account via PIN
2. Select which servers to enable
3. Run `pakt sync` to sync all enabled servers

Each server can have:
- Independent library selection
- Per-server sync option overrides

Servers are synced sequentially. Items that exist on multiple servers are deduplicated by external ID.

## Configuration

Config location:
- Windows: `%APPDATA%\pakt`
- Linux/macOS: `~/.config/pakt`

All configuration is stored in `config.json`. See the [Configuration Reference](https://github.com/MikeSiLVO/Pakt/blob/main/docs/configuration.md) for all options.

### Rating Priority

When both Plex and Trakt have different ratings for the same item, the `rating_priority` setting controls which wins:

- `none` (default) - Don't change either side, keep both as-is
- `plex` - Plex rating overwrites Trakt
- `trakt` - Trakt rating overwrites Plex

Set in `config.json` under `sync.rating_priority`.

### Web Server

Default port is 7258 (PAKT on phone keypad). To change, edit `config.json`:

```json
{
  "web": {
    "host": "127.0.0.1",
    "port": 9000
  }
}
```

Or use CLI flags: `pakt serve --host 0.0.0.0 --port 9000`

## Trakt Account Limits

Free Trakt accounts have a 100-item limit on collections and watchlists. Pakt will warn you if you hit these limits. Upgrade to [Trakt VIP](https://trakt.tv/vip) for unlimited.

## Troubleshooting

Having issues? See the [Troubleshooting Guide](https://github.com/MikeSiLVO/Pakt/blob/main/docs/troubleshooting.md) for common problems and solutions.

## Changelog

See [CHANGELOG.md](https://github.com/MikeSiLVO/Pakt/blob/main/CHANGELOG.md) for release history.

## License

MIT
