Apple Music decryption tool, based on zhaarey/apple-music-alac-atmos-downloader
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
AppleMusicDecrypt/main.py

12 lines
260 B

5 months ago
import asyncio
from src.cmd import NewInteractiveShell
if __name__ == '__main__':
loop = asyncio.get_event_loop()
cmd = NewInteractiveShell(loop)
try:
loop.run_until_complete(cmd.start())
except KeyboardInterrupt:
5 months ago
loop.stop()