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

aioapcaccess

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aioapcaccess

Async version of apcaccess library implemented in python.

  • 0.5.0
  • PyPI
  • Socket score

Maintainers
1

aioapcaccess

build codecov PyPI GitHub

An async implementation of apcaccess. This library provides programmatic access to the status information provided by apcupsd over its Network Information Server (NIS) which usually listens on TCP port 3551.

This project is a re-implementation of the synchronous version flyte/apcaccess using asyncio, where a lot of the logic is borrowed and improved.

Install

Install with pip:

$ pip install aioapcaccess

Usage

The primary API for getting the status from APCUPS is aioapcaccess.request_status. It returns a collections.OrderedDict mapping from field names (e.g., "SERIALNO") to their values in string format. What fields are available will depend on the model of your APC UPS, see APCUPSD manual for details.

The following example shows a typical usage of aioapcaccess

import asyncio
import aioapcaccess

async def main():
    result = await aioapcaccess.request_status(host='localhost', port=3551)
    print(result)

if __name__ == '__main__':
    asyncio.run(main())

The example above will print the following (prettified and simplified):

OrderedDict([
  ('APC', '001,036,0879'),
  ...,
  ('BATTV', '13.7 Volts'),
  ('CUMONBATT', '0 Seconds')
))])

In addition to request_status, we offer the following functions for advanced uses:

  • aioapcaccess.request_raw_status for getting raw (unparsed) status in bytes.
  • aioapcaccess.parse_raw_status for parsing the bytes to the dict shown above.
  • aioapcaccess.split_unit for splitting the supported unit suffix from the value strings, returning a tuple (value, unit). You can check aioapcaccess.UNITS for the set of supported units. Note that units are also in the forms of strings (e.g., "Seconds", "Volts"). If no valid units are found in the value strings, unit will be None.

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