Metadata-Version: 2.4
Name: serato-usb-export
Version: 1.1.2
Summary: Better Serato USB export that beats Serato's sync by putting all files in 1 folder (without duplicates) and only copying changed files, unlike Serato's sync which takes forever and creates many duplicate file locations
Author-email: bvandercar-vt <bvandercar@outlook.com>
License-Expression: MIT
Project-URL: Homepage, https://pypi.org/project/serato-tools/
Project-URL: Repository, https://github.com/bvandercar-vt/serato-tools
Project-URL: Issues, https://github.com/bvandercar-vt/serato-tools/issues
Keywords: serato,serato usb,serato usb sync,serato usb export
Requires-Python: >=3.12
Description-Content-Type: text/markdown
Requires-Dist: serato_tools>=3.7.0

Better Serato USB export. Beats Serato's sync by putting all files in 1 folder (without duplicates) and only copying changed files, unlike Serato's sync which takes forever and creates many duplicate file locations

_Currently designed for Python 3.12+. If you would like backwards compatibility with an older version, please reach out!_

# Installation

```cmd
pip install serato-usb-export
```

# Usage

**NOTE: replaces existing crates on flash drive! (but does not delete existing track files)**
_(TODO: ability to merge with existing)_

**Windows**

```cmd
serato_usb_export --drive E --crate_matcher *
```

**Mac**

```cmd
serato_usb_export --drive "/Volumes/MY_USB/" --crate_matcher *
```

**Linux**

```cmd
serato_usb_export --drive "/media/dave/MY_USB/" --crate_matcher *
```

### More examples
_**See [Arguments](#Arguments) section below for configuration info**_

```cmd
serato_usb_export --drive E --crate_matcher *house* *techno* *bass* --root_crate="Dave USB Drive"
```


**Arguments**

- `serato_usb_export --help`

  See argument usage
- `-d, --drive, --drive_dir`

  Directory of the destination drive. Example: `E` on Windows

- `-c, --crates, --crate_matcher`

  Glob or Regex matcher for crate and smartcrate names to sync, e.g. `*house*`. Can pass multiple, e.g. `*house* *techno*`. To copy all crates, pass `*`

- `--root_crate`

  Not required, but is nice when plugging your drive into another DJ's laptop. Sets all crates to be within this crate on the destination drive

### Contributing / Issues

_This is a wrapper of my [serato-tools](https://github.com/bvandercar-vt/serato-tools) package. Please open issues and contribute there._
