Fixed
- Responded to bandcamp html updates:
- `artist_id` now lies under `publisher` resource (previously `byArtist`) in the
`/track/<name>` output when the track is part of an album.
- `url` field has disappeared from track objects - using `id` instead.
- `country` and `label` fields are now found in the JSON data and thus we make use of it
- Updated and truncated test html files since we now only need to see the beginning of
the document.
- Parsing / logic:
- Token `feat.` is now recognized as a valid member of the `artist` field.
- `free download`, `[EP|LP]`, `(EP|LP)`, `E.P.`, `LP` are now cleaned from the album name.
- Updated `albumtype` logic: in some `compilation` cases track artists would go missing
and get set to _Various Artists_ - instead it now defaults to the original
`albumartist`.
- Handling a couple of edge cases in the track name / title, and catalognum parsers.
Updated
- Package:
- Moved `beets` from main to dev dependencies.
- Updated supported python versions range (3.6.x-3.9.x)
- Added pylint.
- Removed dependency on `packaging` - using `pkg_resources` instead.
- Internal:
- Reintroduced `cached_property` across most of the fields having found how often certain
ones get called.
Added
- Release description is now checked for the catalog number.
- Added a test based on parsing _the JSON output_ directly without having to parse the
entire HTML. Bandcamp have been moving away from HTML luckily, so let's hope the trend
continues.
- Added a tiny cmd-line tool `url2json` which simply outputs either a compacted or a
human version of the JSON data that is found for the given bandcamp URL.