1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
import asyncio
from mpd.asyncio import MPDClient
async def main():
print("Create MPD client")
client = MPDClient()
# Not necessary, but should not cause any trouble either
client.disconnect()
try:
await client.connect("localhost", 6600)
except Exception as e:
print("Connection failed:", e)
return
print("Connected to MPD version", client.mpd_version)
try:
status = await client.status()
except Exception as e:
print("Status error:", e)
return
else:
print("Status success:", status)
print(list(await client.commands()))
import time
start = time.time()
for x in await client.listall():
print("sync:", x)
print("Time to first sync:", time.time() - start)
break
start = time.time()
async for x in client.listall():
print("async:", x)
print("Time to first async:", time.time() - start)
break
try:
await client.addid()
except Exception as e:
print("An erroneous command, as expected, raised:", e)
try:
async for x in client.plchangesposid():
print("Why does this work?")
except Exception as e:
print("An erroneous asynchronously looped command, as expected, raised:", e)
i = 0
async for subsystem in client.idle():
print("Idle change in", subsystem)
i += 1
if i > 5:
print("Enough changes, quitting")
break
if __name__ == "__main__":
asyncio.run(main())
|