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.1.tar.gz
(4.9 kB
view details)
Built Distribution
File details
Details for the file aiompd-0.3.1.tar.gz
.
File metadata
- Download URL: aiompd-0.3.1.tar.gz
- Upload date:
- Size: 4.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b5b284e38b2be23b2bebec15875ce1f5a9bf51b1b5b02d614ae83c3be5b90353 |
|
MD5 | 44c4b3da15ee1a1d338c989c682736e8 |
|
BLAKE2b-256 | 1390afc1e65ae962df696bf9bbd171ce0283fbe4cdaaa7faae7c7914e6f38598 |
File details
Details for the file aiompd-0.3.1-py3-none-any.whl
.
File metadata
- Download URL: aiompd-0.3.1-py3-none-any.whl
- Upload date:
- Size: 7.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9095de642338bec89a8714764555c9eef2409eb0e13ec11aa32a6afb14d255fe |
|
MD5 | 508dcf62c4a7147f409a05e7783e53a9 |
|
BLAKE2b-256 | 68e545d85623840fe6ef3599524b63876fd7d938aef5774d176033866ba21366 |