Metadata-Version: 2.1
Name: SpotiTube
Version: 0.0.1
Summary: A package to download songs from Spotify using YouTube
Home-page: https://github.com/snehashish090/song_downloader
Author: Snehashish Laskar
Author-email: snehashishlaskar.dev@example.com
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.25.1
Requires-Dist: pytube>=12.1.0
Requires-Dist: spotipy>=2.19.0
Requires-Dist: moviepy>=1.0.3
Requires-Dist: eyed3>=0.9.5
Requires-Dist: pytubefix>=1.0.0

# Spotify Song Downloader

## Description
This package allows users to download songs from Spotify by searching for song titles and retrieving them via YouTube. It combines Spotify's search functionality with YouTube's video downloading capabilities to provide a seamless music downloading experience.

## Features
- Search for songs using Spotify's extensive database
- Download songs as MP3 files
- Automatically add metadata (artist, album, title) to downloaded files
- Include album artwork in the MP3 file

## Installation
(Instructions for installation will go here once the package is published)

## Usage

### Basic Usage
```python
from spotify_song_downloader import Downloader, Spotify

# Initialize Spotify client
spotify_client = Spotify(
    clientId="your_spotify_client_id",
    clientSecret="your_spotify_client_secret"
)

# Create Downloader object
downloader = Downloader("path/to/download/directory", spotify_client)

# Download a song
downloader.downloadSong("Song Title")
