Metadata-Version: 2.2
Name: spotify-playlist-transfer
Version: 0.1.2
Summary: A CLI tool to transfer Spotify playlists and liked songs between accounts
Author-email: Abhishek Kumar Singh <devabhishek81121@gmail.com>
License: MIT
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: keyring>=25.6.0
Requires-Dist: loguru>=0.7.3
Requires-Dist: python-dotenv>=1.0.1
Requires-Dist: questionary>=2.1.0
Requires-Dist: rich>=13.9.4
Requires-Dist: spotipy>=2.25.1
Requires-Dist: typer>=0.15.2
Provides-Extra: test
Requires-Dist: pytest>=7.0; extra == "test"
Requires-Dist: pytest-mock>=3.10; extra == "test"
Requires-Dist: pytest-cov>=4.0; extra == "test"
Requires-Dist: responses>=0.23; extra == "test"
Requires-Dist: types-requests>=2.28; extra == "test"
Requires-Dist: typer[all]>=0.9.0; extra == "test"

# Spotify Transfer Tool 🎵➡️🎵

A secure and user-friendly CLI tool for transferring Spotify playlists and liked songs between accounts.

![Demo](https://via.placeholder.com/800x400.png?text=Spotify+Transfer+Tool+Demo)

## Features ✨

- 🔐 Secure credential storage using system keyring
- 🎨 Beautiful terminal interface with Rich
- 🔄 Transfer playlists and liked songs
- ⚡ Smart caching for faster subsequent runs
- ❓ Interactive conflict resolution
- 📊 Progress tracking and status updates

## Installation 📦

```bash
pip install spotify-transfer-tool
```

## Setup Guide ⚙️

### 1. Create Spotify Developer Application
1. Go to [Spotify Developer Dashboard](https://developer.spotify.com/dashboard/)
2. Click "Create App"
3. Fill in details:
   - **Name**: Transfer Tool
   - **Description**: Personal use
4. Add Redirect URI: `http://localhost:8888/callback`
5. Note your Client ID and Client Secret

### 2. Configure the Tool
```bash
spotify-transfer setup
```
Follow the prompts to enter:
- Client ID
- Client Secret
- Redirect URI (use default)

## Usage 🚀

### Basic Transfer
```bash
spotify-transfer transfer
```

### Options
```bash
# Reuse previous authentication
spotify-transfer transfer --reuse

# Re-authenticate specific account
spotify-transfer transfer --change-account source
```

### Command Help
```bash
spotify-transfer --help
```

## Common Issues ⚠️

### Authentication Errors
- Ensure correct redirect URI matches Spotify Dashboard
- If getting "invalid client" error, re-run `setup`

### Missing Playlists
- Only transfers playlists you own
- Check Spotify API permissions

### Rate Limits
- Tool automatically handles rate limits
- If seeing 429 errors, wait 5 minutes and retry

## Support ❤️

For issues and feature requests:
- [GitHub Issues](https://github.com/yourrepo/issues)

## License 📄

MIT License - See [LICENSE](LICENSE) for details
