2025-07-09 17:39:50 +08:00
|
|
|
import sys
|
|
|
|
import os
|
2025-09-30 10:40:58 +08:00
|
|
|
from time import sleep
|
2025-07-09 17:39:50 +08:00
|
|
|
sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
|
|
|
|
2025-09-30 10:40:58 +08:00
|
|
|
from Convention.Runtime.Interaction import *
|
|
|
|
|
|
|
|
download = Interaction("http://www.liubai.site:4000/d/storage/Convention/Convention-Unity-Demo/TEST/song.mp3?sign=pIIWFqeous--i4H5fNIpqQsS0HeMinSRA_bztq6Czgo=:0")
|
|
|
|
file = download.Download("./[Test]/test.mp3")
|
|
|
|
sleep(5)
|
|
|
|
file.Remove()
|
2025-07-10 15:08:20 +08:00
|
|
|
|