Metadata-Version: 2.2
Name: plexcontentmanager
Version: 0.1.0
Summary: A command-line tool for managing and curating Plex Media Server content
Home-page: https://github.com/alexboutros/plexcontentmanager
Author: Alex Boutros
Author-email: alex@aterrible.day
Project-URL: Bug Tracker, https://github.com/alexboutros/plexcontentmanager/issues
Project-URL: Source Code, https://github.com/alexboutros/plexcontentmanager
Project-URL: Documentation, https://github.com/alexboutros/plexcontentmanager#readme
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Topic :: Multimedia :: Video
Classifier: Topic :: Utilities
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: plexapi
Requires-Dist: click
Requires-Dist: colorama
Requires-Dist: requests>=2.25.0
Requires-Dist: urllib3<2.0.0
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: project-url
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# Plex Content Manager

[![PyPI version](https://img.shields.io/pypi/v/plexcontentmanager.svg)](https://pypi.org/project/plexcontentmanager/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![GitHub](https://img.shields.io/github/stars/alexboutros/plexcontentmanager?style=social)](https://github.com/alexboutros/plexcontentmanager)

A command-line tool for managing and curating Plex Media Server content.

## Features

- Connect to your Plex server securely
- List all empty collections across your libraries
- Delete empty collections with confirmation
- Batch operations with force option to skip confirmations

## Installation

### From PyPI (Recommended)

```bash
pip install plexcontentmanager
```

### From Source
```bash
git clone https://github.com/alexboutros/plexcontentmanager.git
cd plexcontentmanager
pip install -e .
```

## Security & Privacy

This application stores your Plex token locally in `~/.plexcontentmanager/config.json`. The token is:
- Never transmitted to any server other than your specified Plex server
- Stored as plaintext in the configuration file
- Only used to authenticate with your Plex server

For security reasons:
- The source code is available on [GitHub](https://github.com/alexboutros/plexcontentmanager) for review
- You can optionally use a dedicated Plex account with limited permissions for this tool
- You can delete the configuration file (`~/.plexcontentmanager/config.json`) when not in use

