Install & Compatibility
Where this runs
tested against v0.0.17 · pip install
no network on importno background threads
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
muslpy 3.10–3.95 runs
installs and imports cleanly · install 0.0s · import 0.000s · 71MB
glibcpy 3.10–3.95 runs
installs and imports cleanly · install 5.6s · import 0.000s · 71MB
70MB installed
● package 70MB
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
XSenseDevice
✓ from xsense import XSenseDevice
✗ from xsense import XSenseDevice
Login, fetch devices, and print their names.
import asyncio
from xsense import XSenseDevice, XSenseStation
async def main():
station = XSenseStation()
await station.login('username', 'password')
await station.update_devices()
for device in station.devices:
print(device.name, device.type)
asyncio.run(main())
Upgrade
Version history
0.0.17latest on PyPI · released May 12, 2026
Audit
Dependencies
aiohttprequiredAsync HTTP client for API calls