Metadata-Version: 2.4
Name: beets-barcode
Version: 0.0.1
Summary: beets plugin to support barcodes and catalogue numbers
Home-page: https://github.com/8h2a/beets-barcode
Author: 8h2a
Author-email: 0x000000000000002a@gmail.com
License: MIT
Platform: ALL
License-File: LICENSE
Requires-Dist: beets>=1.4.7
Requires-Dist: pyzbar>=0.1.7
Requires-Dist: Pillow>=3.4.2
Dynamic: author
Dynamic: author-email
Dynamic: description
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: platform
Dynamic: requires-dist
Dynamic: summary

# beets-barcode

A plugin for beets that finds releases based on a barcodes that are provided 
via text or decoded from image files.

This plugin searches all image files for barcodes to help in selecting the
correct release. It's also possible to manually enter a barcode number or
catalogue number.

If it finds a barcode, it gets the release-id from musicbrainz and
penalizes releases which don't correspond to the found barcode(s).
Whenever it finds a barcode, it will print a helpful message, before the
candidates are shown, to help understanding which candidate corresponds to
a barcode that was found.

## Installation
You can install the plugin by using these commands:
```
git clone https://github.com/8h2a/beets-barcode.git
cd beets-barcode
python setup.py install
```
Additionally you might need to install zbar seperately.
See [pyzbar](https://github.com/NaturalHistoryMuseum/pyzbar#installation) 
for instructions.

You can then [enable the plugin in beet's config.yaml](https://beets.readthedocs.io/en/latest/plugins/index.html#using-plugins):
```yaml
plugins: barcode
match:
    distance_weights:
        barcode: 1.0
```
