This commit is contained in:
Zsolt Ero
2025-10-23 11:48:14 +02:00
parent 4a322a8ddd
commit aa9c32ea23

View File

@@ -19,16 +19,16 @@ parsed = urlparse(url)
base_url = f'{parsed.scheme}://{parsed.netloc}' base_url = f'{parsed.scheme}://{parsed.netloc}'
path = parsed.path.lstrip('/') path = parsed.path.lstrip('/')
destination = '.' destination = './downloads'
subprocess.run( subprocess.run(
[ [
'rclone', 'rclone',
'ls', 'copy',
'--http-url', '--http-url',
base_url, base_url,
f':http:{path}', f':http:{path}',
# destination, destination,
'--dump', '--dump',
'headers', 'headers',
'-vv', '-vv',