Search contents on YouTube.
Project description
yt-search
English
Install
Python 3.6.x or higher is required.
Install command:
# Linux/OS X
$ python -m pip install -U yt-search
# Windows
> py -3 -m pip install -U yt-search
Example
Search video
import yt_search
yt = yt_search.build("API Key")
search_result = yt.search("keyword", sMax=10, sType=["video"])
print(search_result.title)
print(search_result.videoId)
print(search_result.channelTitle)
Search YouTube channel
import yt_search
yt = yt_search.build("API Key")
search_result = yt.search("keyword", sMax=10, sType=["channel"])
print(search_result.channelTitle)
print(search_result.channelId)
Search playlist
import yt_search
yt = yt_search.build("API Key")
search_result = yt.search("keyword", sMax=10, sType=["playlist"])
print(search_result.title)
print(search_result.playlistId)
print(search_result.channelTitle)
sType can be select multiple by list
import yt_search
yt = yt_search.build("API Key")
search_result = yt.search("keyword", sMax=10, sType=["video", "playlist"])
print(search_result.title)
print(search_result.videoId)
print(search_result.playlistId)
print(search_result.channelTitle)
Download search results with wav
Need youtube-dl and ffmpeg.
import yt_search
import youtube_dl
yt = yt_search.build("API Key")
search_result = yt.search("keyword", sMax=10, sType=["video"])
options = {
'format': 'bestaudio/bestaudio',
'outtmpl': '%(title)s.%(ext)s',
'postprocessors': [
{
'key': 'FFmpegExtractAudio',
'preferredcodec': 'wav'
},
{
'key': 'FFmpegMetadata'
}
]
}
with youtube_dl.YoutubeDL(options) as ydl:
ydl.download(["https://www.youtube.com/watch?v=" + i
for i in search_result.videoId])
In the case of youtube#video, playlistId returns None. In the case of youtube#playlist, videoId returns None. In the case of youtube#channel, playlistId and videoId returns None.
日本語
インストール
Python3.6.x以上が必要です。
インストールコマンド:
# Linux/OS X
$ python -m pip install -U yt-search
# Windows
> py -3 -m pip install -U yt-search
プログラムの例
動画を検索
import yt_search
yt = yt_search.build("APIキー")
search_result = yt.search("キーワード", sMax=10, sType=["video"])
print(search_result.title)
print(search_result.videoId)
print(search_result.channelTitle)
YouTubeチャンネルを検索
import yt_search
yt = yt_search.build("APIキー")
search_result = yt.search("キーワード", sMax=10, sType=["channel"])
print(search_result.channelTitle)
print(search_result.channelId)
プレイリストを検索
import yt_search
yt = yt_search.build("APIキー")
search_result = yt.search("キーワード", sMax=10, sType=["playlist"])
print(search_result.title)
print(search_result.playlistId)
print(search_result.channelTitle)
sTypeはリストで複数選択可能です。例:
import yt_search
yt = yt_search.build("APIキー")
search_result = yt.search("キーワード", sMax=10, sType=["video", "playlist"])
print(search_result.title)
print(search_result.videoId)
print(search_result.playlistId)
print(search_result.channelTitle)
検索結果をwavでダウンロード
youtube-dlとffmpegが必要です。
import yt_search
import youtube_dl
yt = yt_search.build("APIキー")
search_result = yt.search("キーワード", sMax=10, sType=["video"])
options = {
'format': 'bestaudio/bestaudio',
'outtmpl': '%(title)s.%(ext)s',
'postprocessors': [
{
'key': 'FFmpegExtractAudio',
'preferredcodec': 'wav'
},
{
'key': 'FFmpegMetadata'
}
]
}
with youtube_dl.YoutubeDL(options) as ydl:
ydl.download(["https://www.youtube.com/watch?v=" + i
for i in search_result.videoId])
youtube#videoの場合はplaylistIdが、 youtube#playlistの場合はvideoIdが、 youtube#channelの場合はplaylistIdとvideoIdがNoneを返します。 Noneを返さない場合もあります(値があるとき)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for yt_search-1.1.0.post1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f721d46fb33cebff1b47cab54c6c04578429fe69b9e64935d81eeaa8320da5f7 |
|
MD5 | 04e9f8cfdc5adb7ee1e48577e7d3040f |
|
BLAKE2b-256 | 7297cc5dbe3d1847c9e1cc0024be60aabed76c65401b546e41c8899a228fc574 |