ronajon

Results 10 comments of ronajon

yes, thats the one. is it possible to convert it to a switch, because thats whats needed by the integration

i think i can create a switch and use an automation to set the operative

> @ronajon Did you manage to get it working? If so, how? unfortunately i did not

same issue here. following!

@bbye98 can you reopen the issue? i clean installed the latest dev version,first got a message about missing yaml import (solved that by installing pyyaml) but after that the next...

hi @bbye98 here's the code credentials are in .env file ``` from minim import tidal from dotenv import load_dotenv import os load_dotenv() TIDAL_CLIENT_ID=os.getenv("TIDAL_CLIENT_ID") TIDAL_CLIENT_SECRET=os.getenv("TIDAL_CLIENT_SECRET") client_tidal_private = tidal.PrivateAPI(client_id=TIDAL_CLIENT_ID, client_secret=TIDAL_CLIENT_SECRET, flow="pkce", browser=False)...

> [@bbye98](https://github.com/bbye98) can you reopen the issue? > > i clean installed the latest dev version,first got a message about missing yaml import (solved that by installing pyyaml) but after...

i switched back to v1. seems to be working, only issue now is that tidal says i'm blocked after using the playwright browser.

https://github.com/bbye98/minim/issues/13#issue-2257493943 i'm now having the same issue as in the link. i'm getting my credentials thorugh the https://developer.tidal.com site. from the comments in the link above, are there any other...

if i regex replace [] it seems to work line 359 old ```python hit_artist = hit["result"]["primary_artist"]["name"] ``` new ```python hit_artist = re.sub(r'.[\(\[]..[\)\]]','',hit["result"]["primary_artist"]["name"]) ```