skillfed

aiopulse

Asynchronous library to control Rollease Acmeda Automate roller blinds via a version 1 Pulse Hub.

aiopulse v0.5.3 73.7K downloads/30d#14,942 on PyPI9
Permissive license Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for… (full text in the JSON record) Active released

What it is and what it does

Aiopulse is an async Python library that communicates with Rollease Acmeda Automate roller blinds through a version 1 Pulse Hub over your local network. It uses a proprietary binary protocol to send commands—open, close, stop, or move to a specific position—and retrieve blind status. The library is built on asyncio, making it suitable for integration into async applications like home automation systems or smart home frameworks.

The package provides discovery to find hubs on your network, connection management, and command methods for individual blinds. It depends only on psutil and requires Python 3.12 or newer. A separate package exists for version 2 Pulse Hubs, so ensure you have the correct hub version before installing.

Use it for:

  • Integrate roller blind control into a home automation system running on asyncio
  • Build a web dashboard to remotely open, close, or position blinds via a local API
  • Automate blind schedules based on time of day or sensor input in a smart home setup
  • Discover and list all connected blinds and hubs on your network for inventory or debugging
  • Control blinds programmatically in response to events like sunrise or sunset

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Asynchronous Python library for controlling Rollease Acmeda Automate roller blinds over a local network via a version 1 Pulse Hub using a proprietary binary protocol.

Yes, if you own Rollease Acmeda Automate roller blinds with a version 1 Pulse Hub and need async Python control. The package is actively maintained, has low install friction, permissive licensing, and no known vulnerabilities. The main constraint is Python version (3.12 or newer) and the requirement that your hub be on the same local network. Not applicable if you have version 2 Pulse Hubs or a different blind system.

Install

aiopulse on PyPI

pip

pip install aiopulse

uv

uv add aiopulse

poetry

poetry add aiopulse

Installing aiopulse

Before you install

Low install friction with a single runtime dependency (psutil). Actively maintained with recent releases; last commit on 2026-08-04 and latest release 10 days ago. Repository is not archived and shows ongoing development.

License in practice

Licensed under Apache License 2.0 (permissive). You may use, modify, and distribute the package freely provided you include the license and document any changes. No restrictions on commercial use.

Quickstart

pip install aiopulse

import asyncio
from aiopulse import Hub

async def main():
    hub = Hub('your-hub-ip')
    await hub.connect()
    await hub.discover()
    await hub.disconnect()

asyncio.run(main())

Requires Python 3.12 or newer. Pulse Hub must be on the same local network and accessible via IP address.

Verify before relying

  • Whether the package works with Pulse Hub firmware versions beyond the initial release
  • Performance characteristics when controlling many blinds simultaneously
  • Timeout and retry behavior for network failures or unresponsive hubs
  • Specific IP address format or hostname resolution requirements for hub connection

Package facts

License Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for… (full text in the JSON record) (permissive)
Python support supports the current Python release (>=3.12)
Install friction low — pure-Python wheel
Runtime dependencies 1 — psutil
Maintenance actively maintained — 10 days since the last release
Last repo commit
First released
Downloads 73,717/month — #14,942 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: aiopulse-0.5.3-py3-none-any.whl

Development Status :: 4 - BetaIntended Audience :: DevelopersLicense :: OSI Approved :: Apache Software LicenseOperating System :: OS IndependentProgramming Language :: Python :: 3.12Topic :: Software Development :: Libraries :: Python Modules

Tags

rollease acmeda automate controlpulse hub roller blindsasyncio smart blindshome automation blindslocal network blind controlacmeda roller blind apiwifi blind automation
home-automationasyncioiot-control

More Python Modules packages