Metadata-Version: 2.1
Name: dizzy-dj
Version: 0.1
Summary: YouTube video to mp3 converter
Home-page: https://github.com/kaustubh-ai/DizzyDJ
Author: Kaustubh Dixit
Author-email: kaustubh.29.dixit@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3
Description-Content-Type: text/markdown
Requires-Dist: Selenium (>=3)

# YouTube Video to mp3 Converter
Converts the YouTube videos stored in your playlist to mp3 files (best used for songs!)
### Table of Contents
1. [Installation](#installation)
2. [Project Motivation](#motivation)
3. [Usage](#usage)
4. [Contribute](#contribute)

.........................................................................................................................................................................................................................................................
<a name="installation"/>
## Installation
**Installation with pip:**  Type this in the terminal:
`pip install dizzy-dj`

.........................................................................................................................................................................................................................................................
<a name="motivation"/>
## Project Motivation
You know the drill---You find a great song on YouTube, and wish there was an mp3 for offline listening. Well, wishes do come true!

.........................................................................................................................................................................................................................................................
<a name="usage"/>
## Usage
Here's a sample usage demonstration:
```
from dizzydj import Downloader

# 'Music' is the playlist name
# Make sure to add the 'r' for chromedriver.exe and download path
# Make sure the download path alreay exists
# '320' is the music quality in kbps

obj = Downloader.Downloader('email@gmail.com', 'Music', r'path/to/chromedriver.exe', r'path/to/download', '320'))
# Enter password when prompted
obj.download()
``` 
Download chromedrive.exe from [this](https://chromedriver.chromium.org/downloads) link.<br/>
Check your chrome version from [this](https://support.chall.com/hc/en-us/articles/200336349-How-do-I-determine-what-version-of-Google-Chrome-I-m-using-) link.

.........................................................................................................................................................................................................................................................
<a name="contribute"/>
## Contribute
1.  Fork the repository from Github
2.  Clone your fork

`git clone https://github.com/yourname/simple-youtube-api.git`

3.  Add the main repository as a remote

`git remote add upstream https://github.com/jonnekaunisto/simple-youtube-api.git`

4.  Create a pull request!


