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

iowait

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

iowait

Platform-independent module for I/O completion events

  • 0.2
  • PyPI
  • Socket score

Maintainers
1

iowait -- Platform-independent module for I/O completion events

Different operating systems provide different ways to wait for I/O completion events: there's select(), poll(), epoll() and kqueue(). For cross-platform applications it can be a pain to support all this system functions, especially because each one provides a different interface.

IOWait solves this problem by providing a unified interface and using always the best and faster function available in the platform. Its only limitation is that, on Windows, it only works for sockets.

This library is compatible both with Python 2 and 3.

Example

Here is an usage example. First, we need to create a pair of sockets:

>>> import socket
>>> a, b = socket.socketpair()

Then we create a IOWait object. This object is essentially a wrapper around a system function (such as select() or poll()), but exposes always the same methods and behaves always the same.

>>> from iowait import IOWait
>>> waitobj = IOWait()

Now we can watch the first socket for read events in this way:

>>> waitobj.watch(a, read=True)

We send some data over the other socket:

>>> b.sendall('this is a test')

Calling wait() on the IOWait object will tell us that the socket a is ready to be read:

>>> events = waitobj.wait()
>>> events #doctest:+ELLIPSIS
[IOEvent(fileobj=<socket object, ...>, read=True, write=False)]

The return value of wait() is a list of three-tuples in the format: (file, read, write), where file is a file-like object, read and write tell respectively whether the file is ready to be read or written.

Once all the data has been read, the next call to wait() will block forever, unless a timeout is specified. The timeout can be zero:

>>> a.recv(14)
'this is a test'
>>> waitobj.wait(0)
[]

Documentation

The documentation is stored in the module's doc string. To read it, use the Python interactive interpreter:

>>> import iowait
>>> help(iowait) #doctest:+SKIP

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