A YouTube Music Search Package With Artist, Channel, and Video Details
Project description
YouTubeMusic 🔥
A blazing fast YouTube music search module using DuckDuckGo scraping.
Features
- No YouTube API needed ✅
- Fast + lightweight async search engine ⚡
- Perfect for Telegram bots, CLI tools, and more 🎧
Install
pip install YouTubeMusic
How To Install
# Search By YouTube Search API
from YouTubeMusic.YtSearch import Search
# Search Using Httpx And Re
from YouTubeMusic.Search import Search
Example Usage
from YouTubeMusic.Search import Search
#from YouTubeMusic.YtSearch import Search
async def SearchYt(query: str):
results = await Search(query, limit=1)
if not results or not results.get("main_results"):
raise Exception("No results found.")
item = results["main_results"][0]
search_data = [{
"title": item.get("title"),
"artist": item.get("artist_name"),
"channel": item.get("channel_name"),
"duration": item.get("duration"),
"views": item.get("views"),
"thumbnail": item.get("thumbnail"),
"url": item.get("url")
}]
song_url = item["url"]
return search_data, song_url
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file youtubemusic-2026.1.18.tar.gz.
File metadata
- Download URL: youtubemusic-2026.1.18.tar.gz
- Upload date:
- Size: 8.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
99606c48a83237bf92f17452b9d6978db2101b39a001a53055976520ddda6b0b
|
|
| MD5 |
ba8506e310422a07cd949d169a6b8553
|
|
| BLAKE2b-256 |
6b7b865ebd5aabc15151fc7922427966b601484b9131bd8c89cb3dd3c3b51e19
|
File details
Details for the file youtubemusic-2026.1.18-py3-none-any.whl.
File metadata
- Download URL: youtubemusic-2026.1.18-py3-none-any.whl
- Upload date:
- Size: 10.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0bdfcfd522b35bfc10c974649c2c6ce49bf194729967a5056bfa8b3041df9023
|
|
| MD5 |
c3b8ddaf20051e09a3283b5ea8a5a787
|
|
| BLAKE2b-256 |
4dae26beaf8bb1e25d0e054f329177f88433641e76d8df643ae255679a0e84de
|