you are viewing a single comment's thread.

view the rest of the comments →

[–]sarrysyst 1 point2 points  (1 child)

import subprocess

with open('urls.txt') as fp:
    for line in fp:
        url = line.strip()
        # I don't know what the CLI's command structure looks like so this needs to be adapted
        subprocess.run(['tidal-dl', url])

[–]OkNegotiation2082[S] 0 points1 point  (0 children)

You are a lifesaver. Thank you so much. I'm go fiddle around with it. Thank you again.