-
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #127 from metabrainz/merge-content-resolver
Merge content resolver
- Loading branch information
Showing
49 changed files
with
3,360 additions
and
110 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,4 @@ docs/_build | |
build | ||
dist | ||
troi.egg-info | ||
*.db |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
TODOS | ||
- Make troi silent by default, enabled current level of messages only for CLI use. Coming in next PR. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Where to find the database file | ||
DATABASE_FILE = "" | ||
|
||
# To connect to a subsonic API | ||
SUBSONIC_HOST = "" # include http:// or https:// | ||
SUBSONIC_USER = "" | ||
SUBSONIC_PASSWORD = "" | ||
SUBSONIC_PORT = 4533 | ||
|
||
# List of music directories to scan by default | ||
# If paths are passed to scan command, this list is ignored. | ||
# Invalid directories are skipped. | ||
MUSIC_DIRECTORIES = [ | ||
'My/Music/Directory 1', | ||
'My/Music/Directory 2', | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
.. _troi-arguments: | ||
|
||
Command line options | ||
==================== | ||
|
||
Playlist generation options | ||
--------------------------- | ||
|
||
The full list of command line options for each of the commands is below: | ||
|
||
.. click:: troi.cli:cli | ||
:prog: troi | ||
:nested: full | ||
:commands: list, playlist, lb-radio, resolve, weekly-jams, test | ||
|
||
Database / content resolution options | ||
------------------------------------- | ||
|
||
.. click:: troi.content_resolver.cli:cli | ||
:prog: troi db | ||
:nested: full | ||
:commands: create, scan, subsonic, clean, metadata, top-tags, duplicates, unresolved |
Oops, something went wrong.