Mixcloud API wrapper for Python and Async IO
Project description
Mixcloud API wrapper for Python and Async IO
aiomixcloud is a wrapper library for the HTTP API of Mixcloud. It supports asynchronous operation via asyncio and specifically the aiohttp framework. aiomixcloud tries to be abstract and independent of the API’s transient structure, meaning it is not tied to specific JSON fields and resource types. That is, when the API changes or expands, the library should be ready to handle it.
Installation
The following Python versions are supported:
CPython: 3.6, 3.7, 3.8, 3.9
PyPy: 3.5
Install via pip:
pip install aiomixcloud
Usage
You can start using aiomixcloud as simply as:
from aiomixcloud import Mixcloud
# Inside your coroutine:
async with Mixcloud() as mixcloud:
cloudcast = await mixcloud.get('bob/cool-mix')
# Data is available both as attributes and items
cloudcast.user.name
cloudcast['pictures']['large']
# Iterate over associated resources
for comment in await cloudcast.comments():
comment.url
A variety of possibilities is enabled during authorized usage:
# Inside your coroutine:
async with Mixcloud(access_token=access_token) as mixcloud:
# Follow a user
user = await mixcloud.get('alice')
await user.follow()
# Upload a cloudcast
await mixcloud.upload('myshow.mp3', 'My Show', picture='myshow.jpg')
For more details see the usage page of the documentation.
License
Distributed under the MIT License.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for aiomixcloud-1.0.6-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6cb5bdd09a2408fd1baba9a28350c614ede11a59fa116fe021b0b56a9cd9361b |
|
MD5 | 6c316cb446239ff2bfcc386e17766534 |
|
BLAKE2b-256 | a4a162c080ab9e9edef427dd03468772ed29c85ce9797ab518099fddccf6b616 |