2020-02-17 15:46:18 +00:00
|
|
|
#!/usr/bin/env python3
|
2020-02-23 21:51:16 +00:00
|
|
|
import click
|
2020-03-02 12:46:48 +00:00
|
|
|
import deemix.app.main as app
|
2020-02-23 21:51:16 +00:00
|
|
|
from deemix.app.settings import initSettings
|
2020-02-17 19:24:39 +00:00
|
|
|
|
2020-02-23 21:51:16 +00:00
|
|
|
@click.command()
|
|
|
|
@click.option('-b', '--bitrate', default=None, help='Overwrites the default bitrate selected')
|
|
|
|
@click.argument('url')
|
|
|
|
def download(bitrate, url):
|
|
|
|
settings = initSettings()
|
2020-04-06 18:21:06 +00:00
|
|
|
app.login()
|
2020-03-02 12:46:48 +00:00
|
|
|
app.downloadLink(url, settings, bitrate)
|
2020-02-23 21:51:16 +00:00
|
|
|
click.echo("All done!")
|
2020-02-17 15:46:18 +00:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2020-02-23 21:51:16 +00:00
|
|
|
download()
|