deemix-py/deemix/__main__.py

27 lines
859 B
Python
Raw Normal View History

2020-02-17 16:46:18 +01:00
#!/usr/bin/env python3
import click
2020-08-15 23:03:05 +02:00
from deemix.app.cli import cli
from os.path import isfile
@click.command()
@click.option('-b', '--bitrate', default=None, help='Overwrites the default bitrate selected')
2020-05-20 17:02:24 +02:00
@click.option('-l', '--local', is_flag=True, help='Downloads in a local folder insted of using the default')
@click.option('-p', '--path', type=str, help='Downloads in the given folder')
@click.argument('url', nargs=-1, required=True)
def download(bitrate, local, url, path):
app = cli(local, path)
app.login()
url = list(url)
if isfile(url[0]):
filename = url[0]
with open(filename) as f:
url = f.readlines()
2020-08-15 23:03:05 +02:00
app.downloadLink(url, bitrate)
click.echo("All done!")
2020-05-20 19:52:01 +02:00
if local:
2020-08-15 23:03:05 +02:00
click.echo(app.set.settings['downloadLocation']) #folder name output
2020-02-17 16:46:18 +01:00
if __name__ == '__main__':
2020-08-14 20:31:37 +02:00
download()