Metadata-Version: 2.1
Name: YouTubeMusicAPI
Version: 2.7.1
Summary: The search API for YouTube Music.
Home-page: https://github.com/cj-praveen/YouTube-Music-API
License: MIT
Keywords: youtube music api,YouTubeMusicAPI,python youtube music api,youtube music api python,youtube api pypi,youtube api
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# YouTubeMusicAPI 2.7.1

The search API for [YouTube Music](https://music.youtube.com/).

```
python -m pip install -U YouTubeMusicAPI
```

## Example

```python
import YouTubeMusicAPI

result = YouTubeMusicAPI.Search("shape of you")

print(result)

# output
# {
#     "name": "Ed Sheeran - Shape of You (Official Music Video)",
#     "id": "JGwWNGJdvx8",
#     "url": "https://music.youtube.com/watch?v=JGwWNGJdvx8",
#     "images": [
#         "https://i.ytimg.com/vi/JGwWNGJdvx8/hqdefault.jpg",
#         "https://i.ytimg.com/vi/JGwWNGJdvx8/default.jpg",
#         "https://i.ytimg.com/vi/JGwWNGJdvx8/mqdefault.jpg",
#         "https://i.ytimg.com/vi/JGwWNGJdvx8/sddefault.jpg",
#         "https://i.ytimg.com/vi/JGwWNGJdvx8/maxresdefault.jpg"
#     ],
#     "author_name": "Ed Sheeran",
#     "author_url": "https://www.youtube.com/c/EdSheeran"
# }
```

## License
This Python package is distributed under the [MIT License](https://mit-license.org/).
