-
-
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.
upstream is dead, bundle code to simplify patching
- Loading branch information
Showing
24 changed files
with
6,071 additions
and
339 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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
requests | ||
bs4 | ||
pytube | ||
ytmusicapi |
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,19 @@ | ||
# flake8: noqa: F401 | ||
# noreorder | ||
""" | ||
Pytube: a very serious Python library for downloading YouTube Videos. | ||
""" | ||
__title__ = "pytube" | ||
__author__ = "Ronnie Ghose, Taylor Fox Dahlin, Nick Ficano" | ||
__license__ = "The Unlicense (Unlicense)" | ||
__js__ = None | ||
__js_url__ = None | ||
|
||
from tutubo.pytube.version import __version__ | ||
from tutubo.pytube.streams import Stream | ||
from tutubo.pytube.captions import Caption | ||
from tutubo.pytube.query import CaptionQuery, StreamQuery | ||
from tutubo.pytube.__main__ import YouTube | ||
from tutubo.pytube.contrib.playlist import Playlist | ||
from tutubo.pytube.contrib.channel import Channel | ||
from tutubo.pytube.contrib.search import Search |
Oops, something went wrong.