Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

python-xsense

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

python-xsense

XSense Python Module

  • 0.0.13
  • PyPI
  • Socket score

Maintainers
1

Python-xsense

Python-xsense is a small library to interact with the API of XSense Home Security. It allows to retrieve the status of various devices and the basestation.

Example sync usage

::

from xsense import XSense from xsense.utils import dump_environment api = XSense() api.init() api.login(username, password) api.load_all() for _, h in api.houses.items(): for _, s in h.stations.items(): api.get_state(s) dump_environment(api)

Example async usage

::

import asyncio from xsense import AsyncXSense from xsense.utils import dump_environment

async def run(username: str, password: str): api = AsyncXSense() await api.init() await api.login(username, password) for _, h in api.houses.items(): for _, s in h.stations.items(): await api.get_state(s) dump_environment(api)

asyncio.run(run(username, password))

Development

This library is in an early development stage and created primarily to make an integration for home assistant.

Keywords

FAQs


Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc