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

# YouTubeMusicAPI
The search API for YouTube Music.

## Installation:
- Python 3.6 or later is required.
- First, please make sure that the latest pip version is installed in your working environment.
```
python -m pip install -U pip
```
- Run the following command given below to install the package:
```
python -m pip install -U YouTubeMusicAPI
```

## Get Started
- Here is an example program.
```py
import YouTubeMusicAPI

query: str = "alan walker faded"

result = YouTubeMusicAPI.Search(query)

if result:
    print(result)
else:
    print("No Result Found")
```
- If a result for your search query is found while running the above program, it will return an **dict object**; otherwise, it will return **None**. 
```json
{
    "trackName": "...",
    "trackId": "...",
    "trackUrl": "...",
    "artworkUrl": "...",
    "artistName": "...",
    "artistUrl": "..."
}
```
