- Improve annotation algorithm for Youtube (and others)
- Patch Pytube - improve OS deletion of files and writing of files - Start working on Claude - Improve template management
This commit is contained in:
19
patched_packages/pytube/__init__.py
Normal file
19
patched_packages/pytube/__init__.py
Normal file
@@ -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 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
|
||||
Reference in New Issue
Block a user