Metadata-Version: 2.1
Name: sync-dl
Version: 0.3.5
Summary: A tool for downloading and syncing remote playlists to your computer
Home-page: https://github.com/PrinceOfPuppers/sync-dl
Author: Joshua McPherson
Author-email: joshuamcpherson5@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Environment :: Console
Classifier: Intended Audience :: End Users/Desktop
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: youtube-dl

<img align="left" width="80" height="80" src="https://raw.githubusercontent.com/PrinceOfPuppers/sync-dl/main/icon.png">

# sync-dl
<p>
<img src="https://img.shields.io/pypi/dm/sync-dl">
<img src="https://img.shields.io/pypi/l/sync-dl">
<img src="https://img.shields.io/pypi/v/sync-dl">
<img src="https://img.shields.io/badge/python-%E2%89%A53.6-blue">
<img src="https://travis-ci.com/PrinceOfPuppers/sync-dl.svg?branch=main">

</p>



> A tool for downloading and syncing remote playlists to your computer
- [INSTALLATION](#INSTALLATION)
- [ABOUT](#ABOUT)
- [USAGE](#USAGE)
- [EXAMPLE](#EXAMPLE)
- [DEVLOPMENT](#DEVLOPMENT)


# INSTALLATION
Requires ffmpeg or avconv, however one of these comes pre-installed on most machines. 

Install sync-dl via pypi using pip:
``` 
pip install sync-dl
```

# ABOUT
Created to avoid having music deleted but still have the convenience of browsing, adding and reordering new music using remote services such as youtube.

The application does not store any of its metadata in songs, metadata is stored next to them in a .metadata file, the music files are managed through numbering, allowing them to be played alphanumerically using any playback service (such as VLC)


# Usage
```
sync-dl [options] PLAYLIST
```
Where playlist is simply the name of the directory you wish to store the playlist in. playlist directory will always be in current working directory unless a music directory is specified using the -l, --local-dir option to hard set a music directory.

To see all options use the command:
```
sync-dl -h
```

### Smart Sync:
The main feature of sync-dl
```
sync-dl -s PLAYLIST
```
Adds new music from remote playlist to local playlist, also takes ordering of remote playlist
without deleting songs no longer available in remote playlist.

Songs that are no longer available in remote, will remain after the song they are currently after
in the local playlist


# EXAMPLE
```
sync-dl -l my/local/music/folder
```
Will use my/local/music/folder to store and manipulate playlist in the future.
```
sync-dl -n https://www.youtube.com/playlist?list=PL-lQgJ3eJ1HtLvM6xtxOY_1clTLov0qM3 sweetJams
```
Will create a new playlist at my/local/music/folder/sweetJams and
download the playlist at the provided url to it.

```
sync-dl -m 1 5 sweetJams
```
Will move song number 1 in the playlist to position 5
```
sync-dl -a sweetJams
```
Will check for any new songs in the remote playlist and append them to the end of sweetJams
```
sync-dl -s sweetJams
```
Will use smart sync on sweetJams, downloading new songs from the remote playlist and reordering the playlist to match the order of the remote playlist without deleting any songs that are no longer available
```
sync-dl -p sweetJams
```
Will give you all the urls for the songs in sweetJams


# DEVLOPMENT
To build for devlopment run:
```
git clone https://github.com/PrinceOfPuppers/sync-dl.git

cd sync-dl

pip install -e .
```
This will build and install sync-dl in place, allowing you to work on the code without having to reinstall after changes

### Automated Testing
```
python test.py [options] TEST_PLAYLIST_URL
```
will run all unit and integration tests, for the integration tests it will use the playlist TEST_PLAYLIST_URL


