Implementation of `select.poll` on Microsoft Windows.
Project description
Implementation of select.poll on Microsoft Windows.
- Pure Python; no C extensions (uses
ctypes.windll) - Drop-in-compatible API
- Clean "ponyfill"; no monkeypatching
- No dependencies (besides Windows Vista or newer)
- Python 3.6+ compatible
Usage
try:
from select import POLLIN, POLLOUT, poll
except ImportError:
# https://github.com/python/cpython/issues/60711
from winpoll import POLLIN, POLLOUT, wsapoll as poll
p = poll()
p.register(sock1, POLLIN)
p.register(sock2, POLLIN | POLLOUT)
p.unregister(sock1)
for sock, events in p.poll(timeout=3):
print(f"Socket {sock} is ready with {events}")
# like select.poll objects, winpoll.wsapoll objects acquire no resources
# thus have no cleanup requirement besides plain garbage collection
Limitations / Bugs
-
Does not work before Windows Vista.
- Last affected OS EOL: April 8, 2014
-
Outbound TCP connections don't correctly report failure-to-connect (
(POLLHUP | POLLERR | POLLWRNORM)) before Windows 10 Version 2004 (OS build 19041).- Last affected OS EOL: May 10, 2022
Installation
Command-line
pip install winpoll
requirements.txt
winpoll
pyproject.toml
[project]
dependencies = [
...,
"winpoll",
]
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
winpoll-0.20287.2.tar.gz
(8.6 kB
view details)
File details
Details for the file winpoll-0.20287.2.tar.gz.
File metadata
- Download URL: winpoll-0.20287.2.tar.gz
- Upload date:
- Size: 8.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a641590f2e8fa8e013f5a5a27ad5be3a297e0d2151e2a0ac1dbb17c1caf3d686
|
|
| MD5 |
32da6e95f6e7b822feb9d019e427bdcd
|
|
| BLAKE2b-256 |
ecd5bf1579a9924b72c69ac3c8fa57a5b811d2e5660fba1a4809b1ae55a9f985
|