Metadata-Version: 2.1
Name: tidal-ng
Version: 0.1.0
Summary: Advanced API wrapper for Tidal music
Home-page: https://github.com/MrTransparentBox/tidal.py
License: MIT
Author: Alexander Johnson
Author-email: alexjohnson2004@gmail.com
Requires-Python: >=3.12,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: httpx[http2] (>=0.26.0,<0.27.0)
Project-URL: Repository, https://github.com/MrTransparentBox/tidal.py
Description-Content-Type: text/markdown

An advanced Python API wrapper for tidal music.

## Installation
### Using pip
The package can be installed in Python environments using package managers like pip.
```bat
pip install -U tidal
```
## Basic usage
First, register an app at the [Tidal dev dashboard](https://developer.tidal.com/dashboard) to obtain a client ID and secret
- Create a TidalClient instance passing in the client ID and secret
- The annotated datatypes returned can be accessed similarly to a dict
```python
import tidal
import os

client = tidal.TidalClient("my_client_id_here", "my_client_secret_here")
# .track("track_id", "country_code")
track = client.track("35079505", "GB")

print(f"Name: {track["title"]}\nURL:{track["tidalUrl"]}")
```

