Initial commit

This commit is contained in:
Connor Johnstone
2026-03-17 19:00:43 -04:00
commit 208dbf422b
10 changed files with 718 additions and 0 deletions

21
readme.md Normal file
View File

@@ -0,0 +1,21 @@
# shanty-search
Online music search for [Shanty](ssh://connor@git.rcjohnstone.com:2222/Shanty/shanty.git).
Searches for artists, albums, and tracks via online databases (MusicBrainz, etc.)
and returns structured results for adding to the library watchlist.
## Usage
```sh
shanty-search artist "Pink Floyd"
shanty-search album "Dark Side" --artist "Pink Floyd"
shanty-search track "Time" --artist "Pink Floyd"
shanty-search discography "83d91898-7763-47d7-b03b-b92132375c47"
# JSON output
shanty-search artist "Radiohead" --json
# Limit results
shanty-search artist "The" --limit 5
```