-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add audio playback to beat library view
Fixes #2 - Installed pafy and youtube-dl - Modified pafy to fix dislike bug. (Modified module will be included in repo) - Add audio_url to Video database model and inlcuded in add_uploads_to_database() - Changed additionallinks to head (Jinja templating) - Added Favicon - Incorporate a while loop to deal with pafy's "dead link" problem
- Loading branch information
1 parent
86c8f33
commit d7d57cf
Showing
22 changed files
with
2,685 additions
and
30 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
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,14 @@ | ||
__version__ = "0.5.5" | ||
__author__ = "np1" | ||
__license__ = "LGPLv3" | ||
|
||
|
||
# External api | ||
from .pafy import new | ||
from .pafy import set_api_key | ||
from .pafy import load_cache, dump_cache | ||
from .pafy import get_categoryname | ||
from .pafy import backend | ||
from .util import GdataError, call_gdata | ||
from .playlist import get_playlist, get_playlist2 | ||
from .channel import get_channel |
Oops, something went wrong.