mirror of
https://github.com/hanxi/xiaomusic.git
synced 2025-12-06 14:52:50 +08:00
11 lines
305 B
Python
11 lines
305 B
Python
from xiaomusic.utils import (
|
|
download_and_extract,
|
|
)
|
|
|
|
if __name__ == "__main__":
|
|
import asyncio
|
|
|
|
url = "https://github.hanxi.cc/proxy/hanxi/xiaomusic/releases/download/main/app-amd64-lite.tar.gz"
|
|
target_directory = "./tmp/app"
|
|
asyncio.run(download_and_extract(url, target_directory))
|