Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
This started as a fork of https://github.com/Bahnburner/pykevoplus but at this point is pretty much a rewrite.
This library has been converted to be compatible with asyncio and also to use the latest version of the Kevo API including support for realtime updates via websockets.
.. code:: python
from aiokevoplus import KevoApi
def status_changed(lock):
print("Status changed for " + lock.name)
api = KevoApi()
try:
await api.login("username@email.com", "password123")
api.register_callback(status_changed)
await api.websocket_connect()
locks = api.get_locks()
for lock in locks:
lock.lock()
except Exception as e:
print("Something went wrong " + e)
FAQs
Control Kwikset Kevo locks
We found that aiokevoplus demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.