File: __init__.py

package info (click to toggle)
python-pyflume 0.8.7-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 332 kB
  • sloc: python: 857; makefile: 6
file content (8 lines) | stat: -rw-r--r-- 486 bytes parent folder | download
1
2
3
4
5
6
7
8
"""Authenticates to Flume API, returns a list of devices and allows you to pull the latest sensor results over a period of time."""

from .auth import FlumeAuth  # noqa: WPS300, F401
from .data import FlumeData  # noqa: WPS300, F401
from .devices import FlumeDeviceList  # noqa: WPS300, F401
from .leak import FlumeLeakList  # noqa: WPS300, F401
from .notifications import FlumeNotificationList  # noqa: WPS300, F401
from .usage import FlumeUsageAlertList  # noqa: WPS300, F401