# Tagz

"Tagz" is a command-line tool to index and manage an mp3 and mp4 collection.

## Install

- run "pip install tagz"

usage: tagz [-h] {convert,clear,gather,update,add,find} ...

## Available commands

positional arguments:
  {convert,clear,gather,update,add,find}
    find                Perform a search in the tagz database. Optionnaly pass
                        the id3 tagz to search for with -t (artist, genre,
                        comment, etc)
    add                 Add a directory to the tagz database.
    clear               Empty the tag database.
    update              Update tagz database from watched directories.
    convert             Convert all tagz to id3 v2.4 For some reason
    gather              rename from source directory to target directory like
                        this: target/a/artist/album/title.mp3

optional arguments:
  -h, --help            show this help message and exit

### find

usage: tagz find [-h] [-t tagz] words

positional arguments:
  words

optional arguments:
  -h, --help            show this help message and exit
  -t tagz, --tagz tagz

### add

usage: tagz add [-h] music_dir

positional arguments:
  music_dir

optional arguments:
  -h, --help  show this help message and exit

### clear

usage: tagz clear [-h]

optional arguments:
  -h, --help  show this help message and exit

### update

usage: tagz update [-h]

optional arguments:
  -h, --help  show this help message and exit

### convert

usage: tagz convert [-h] path

positional arguments:
  path

optional arguments:
  -h, --help  show this help message and exit

### gather

usage: tagz gather [-h] src dest

positional arguments:
  src
  dest

optional arguments:
  -h, --help  show this help message and exit
