You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

aiogear

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aiogear - pypi Package Compare versions

Comparing version
0.2
to
0.2.1
+1
-1
aiogear.egg-info/PKG-INFO
Metadata-Version: 1.1
Name: aiogear
Version: 0.2
Version: 0.2.1
Summary: Asynchronous gearman protocol based on asyncio

@@ -5,0 +5,0 @@ Home-page: https://github.com/sardok/aiogear

@@ -57,2 +57,4 @@ import struct

begin, end = fmt_sz, fmt_sz + sz
if len(data) < end:
raise RuntimeError
return Type(packet_num), data[begin:end], end

@@ -140,3 +142,3 @@

packet, payload, offset = self._unpack(self._data)
except struct.error:
except (struct.error, RuntimeError):
# not enough data in the buffer

@@ -143,0 +145,0 @@ break

Metadata-Version: 1.1
Name: aiogear
Version: 0.2
Version: 0.2.1
Summary: Asynchronous gearman protocol based on asyncio

@@ -5,0 +5,0 @@ Home-page: https://github.com/sardok/aiogear

@@ -5,3 +5,3 @@ from setuptools import setup

name='aiogear',
version='0.2',
version='0.2.1',
author='Sinan Nalkaya',

@@ -8,0 +8,0 @@ author_email='sardok@gmail.com',