About 10,700 results
Open links in new tab
  1. select — Waiting for I/O completion — Python 3.14.5 documentation

    2 days ago · select — Waiting for I/O completion ¶ This module provides access to the select() and poll() functions available in most operating systems, devpoll() available on Solaris and derivatives, epoll() …

  2. Python select Module - W3Schools

    Definition and Usage The select module provides access to low-level I/O multiplexing using select (), poll (), epoll (), and kqueue (). Use it to monitor multiple file descriptors and wait until one or more are …

  3. Understanding `select` in Python: A Comprehensive Guide

    Mar 28, 2025 · In the world of Python programming, handling multiple input/output (I/O) sources efficiently is crucial, especially in scenarios where an application needs to manage multiple network …

  4. python - How select.select () works? - Stack Overflow

    Jul 21, 2012 · Python's select() gets passed through as a select() system call as you are expecting, but the problem you have with it blocking is a different issue, probably relating to buffering. Just to satify …

  5. Select function in Python - Pythontic.com

    The select () method provides I/O multiplexing through which a python program can wait for read, write and exception conditions on multiple descriptors.The Python example waits on three file descriptors …

  6. selectors — High-level I/O multiplexing — Python 3.14.5 documentation

    2 days ago · Source code: Lib/selectors.py Introduction: This module allows high-level and efficient I/O multiplexing, built upon the select module primitives. Users are encouraged to use this module …

  7. How do I select a subset of a - pandas

    To select a single column, use square brackets [] with the column name of the column of interest. For more explanation, see Brackets in Python and pandas. Each column in a DataFrame is a Series. As …

  8. select — Wait for I/O Efficiently — PyMOTW 3

    Dec 18, 2016 · Using select () ¶ Python’s select() function is a direct interface to the underlying operating system implementation.

  9. How does the select () function in the select module of Python exactly ...

    Mar 10, 2014 · In the code snippet inputready,outputready,exceptready = select.select(input,[],[]), I believe the select() function returns three possibly empty lists of waitable objects for input, output and …

  10. numpy.select — NumPy v2.4 Manual

    numpy.select # numpy.select(condlist, choicelist, default=0) [source] # Return an array drawn from elements in choicelist, depending on conditions. Parameters: condlistlist of bool ndarrays The list of …

  11. selectWait for I/O Efficiently - Python Module of the Week

    Jul 11, 2020 · The select module provides access to platform-specific I/O monitoring functions. The most portable interface is the POSIX function select (), which is available on Unix and Windows. The …