Python library for interacting with the Positec/Landroid cloud API. Provides asynchronous control of Landroid robotic lawn mowers. Current version 6.3.6, supports Python 3.9+ with <4.0.
pip install pyworxcloudVerified import paths — ran on the pinned version, not inferred.
Initializes WorxCloud and lists mowers.
Use 'async with WorxCloud(...) as cloud' instead of WorxCloud(...) without async.
WorxCloud(email, password, region='EU'). Common regions: 'EU', 'US', 'CN'.
Use cloud.products instead of cloud.mowers.
Use 'await main()' if already in an event loop, or nest with 'asyncio.get_event_loop().run_until_complete(main())'.
Replace cloud.mowers with cloud.products.
URL-encode password or switch region: WorxCloud(email, password, region='EU'). Also ensure you use the exact email for the Positec account.
No dependency data recorded yet.