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.
|
|
|
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:
|
|
|
|
loop.stop()
|