- Patch Pytube - improve OS deletion of files and writing of files - Start working on Claude - Improve template management
20 lines
592 B
Python
20 lines
592 B
Python
# 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 pytube.version import __version__
|
|
from pytube.streams import Stream
|
|
from pytube.captions import Caption
|
|
from pytube.query import CaptionQuery, StreamQuery
|
|
from pytube.__main__ import YouTube
|
|
from pytube.contrib.playlist import Playlist
|
|
from pytube.contrib.channel import Channel
|
|
from pytube.contrib.search import Search
|