/discogsdata

CLI for exploring/exploiting a DB populated from Discogs.com data

Primary LanguagePythonApache License 2.0Apache-2.0

discogsdata

License Tests

CLI for exploring/exploiting a DB populated from Discogs Data

Installation

Install this tool using pip:

$ pip install discogsdata

Usage

Usage instructions go here.

First you’ll need a database of Discogs Data. This discogsdata CLI tool relies on data imported using the discogs-xml2db. It also currently works strictly for the PostgreSQL database.

Development

To contribute to this tool, first checkout the code. Then create a new virtual environment:

git clone https://github.com/crossjam/discogsdata
cd discogsdata
python -mvenv venv
source venv/bin/activate

Or if you are using pipenv:

pipenv shell

Now install the dependencies and test dependencies:

pip install -e '.[test]'

To run the tests:

pytest