Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

pyialarm

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pyialarm - npm Package Compare versions

Comparing version
1.8.1
to
1.9.0
+1
-1
PKG-INFO
Metadata-Version: 2.1
Name: pyialarm
Version: 1.8.1
Version: 1.9.0
Summary: A simple library to interface with iAlarm systems, built for use with Home-Assistant

@@ -5,0 +5,0 @@ Home-page: https://github.com/RyuzakiKK/pyialarm

Metadata-Version: 2.1
Name: pyialarm
Version: 1.8.1
Version: 1.9.0
Summary: A simple library to interface with iAlarm systems, built for use with Home-Assistant

@@ -5,0 +5,0 @@ Home-page: https://github.com/RyuzakiKK/pyialarm

@@ -112,3 +112,3 @@ import logging

def get_status(self) -> int:
def get_status(self, include_memory_feature=False) -> int:
command = OrderedDict()

@@ -126,2 +126,5 @@ command['DevStatus'] = None

if not include_memory_feature:
return status
zone_alarm = False

@@ -189,2 +192,3 @@ command = OrderedDict()

if not data:
self.sock.close()
raise ConnectionError("Connection error, received no reply")

@@ -198,2 +202,3 @@

if not decoded:
self.sock.close()
raise ConnectionError("Connection error, received an unexpected reply")

@@ -200,0 +205,0 @@

from setuptools import setup
__version__ = '1.8.1'
__version__ = '1.9.0'

@@ -5,0 +5,0 @@ setup(