CLI for exploring/exploiting a DB populated from Discogs Data
Install this tool using pip
:
$ pip install discogsdata
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.
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