This repository has been archived by the owner on Jul 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
144 additions
and
81 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
API | ||
=== | ||
|
||
.. module:: youtube_bz | ||
|
||
YouTube API | ||
----------- | ||
|
||
.. autoclass:: youtube_bz.api.youtube.Client | ||
:members: | ||
|
||
MusicBrainz API | ||
--------------- | ||
|
||
.. autoclass:: youtube_bz.api.musicbrainz.Client | ||
:members: |
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,2 @@ | ||
sphinx | ||
sphinx-rtd-theme |
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,11 @@ | ||
Installation | ||
============ | ||
|
||
From PyPi | ||
--------- | ||
|
||
You can get YoutubeBrainz from PyPi repository directly: | ||
|
||
.. code-block:: console | ||
$ pip install youtube-bz |
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,33 @@ | ||
Getting started | ||
=============== | ||
|
||
To get you started we will fetch an album from a MusicBrainzID. | ||
|
||
Find a MBID | ||
----------- | ||
|
||
In this exemple we will get the album "Hybrid Theory" from "Linkin Park". | ||
|
||
YouTubeBrainz need to use the MIBD of a release to download it. | ||
|
||
For instance in the following URL: | ||
|
||
.. code-block:: text | ||
https://musicbrainz.org/release/5fc6445c-05ce-34e7-ab31-63bf7d3a9f24 | ||
the MBID is ``5fc6445c-05ce-34e7-ab31-63bf7d3a9f24``. | ||
|
||
Now that we have the MBID we can download the release thanks to YouTubeBrainz. | ||
|
||
Download the Release | ||
-------------------- | ||
|
||
Downloading the release is really straight forward: | ||
|
||
.. code-block:: console | ||
$ youtube-bz download 5fc6445c-05ce-34e7-ab31-63bf7d3a9f24 | ||
Your download should start now and you will get the YouTube videos | ||
associated to the MBID album. |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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