MPD (Music Player Daemon) client for asyncio
Project description
Usage example:
import asyncio
import aiompd
URLS = [
"http://mega5.fast-serv.com:8134",
"http://176.31.240.114:8326",
"http://74.86.186.4:10042",
"http://s14.myradiostream.com:4668",
]
PLAY_TIME = 10
@asyncio.coroutine
def nexter(mpc):
yield from mpc.clear()
for url in URLS:
yield from mpc.add(url)
for n in range(len(URLS)):
yield from mpc.play(track=n)
yield from asyncio.sleep(PLAY_TIME)
@asyncio.coroutine
def volumer(mpc):
timeout = (len(URLS) * PLAY_TIME) / 200
for volume in range(0, 101, 1):
yield from mpc.set_volume(volume)
yield from asyncio.sleep(timeout)
for volume in range(100, -1, -1):
yield from mpc.set_volume(volume)
yield from asyncio.sleep(timeout)
def main():
loop = asyncio.get_event_loop()
mpc = loop.run_until_complete(aiompd.Client.make_connection())
loop.run_until_complete(asyncio.wait([nexter(mpc), volumer(mpc)]))
if __name__ == '__main__':
main()
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
aiompd-0.3.2.tar.gz
(5.1 kB
view details)
Built Distribution
File details
Details for the file aiompd-0.3.2.tar.gz
.
File metadata
- Download URL: aiompd-0.3.2.tar.gz
- Upload date:
- Size: 5.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cb08feafe68068ae39fd8de85700dc522769d14251480d4d6fba27d14f6dbdc5 |
|
MD5 | 8c9541c488de994cc7ee0c1a20f9680c |
|
BLAKE2b-256 | a062f580bd875441796bda3e677cb1d13170141bba99ec49edbc235a159d7e51 |
File details
Details for the file aiompd-0.3.2-py3-none-any.whl
.
File metadata
- Download URL: aiompd-0.3.2-py3-none-any.whl
- Upload date:
- Size: 7.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e6ca1b053ce39cc8911f6db3645fed080e58f1d5abfb6360b423853815924c16 |
|
MD5 | 5b6f1b200a89695fc61f2e325e818239 |
|
BLAKE2b-256 | 9e32213813a872fb3e8b2479a6be187ec2091d029c0faa75bda6ab8c4fce9a21 |