asyncio.gather()
  • References/Python/Python/Inputouput

asyncio.gather(*coros_or_futures, loop=None, return_exceptions=False) Return a future aggregating results from the given coroutine

2025-01-10 15:47:30
asyncio.create_subprocess_shell()
  • References/Python/Python/Inputouput

coroutine asyncio.create_subprocess_shell(cmd, stdin=None, stdout=None, stderr=None, loop=None, limit=None, **kwds) Run the

2025-01-10 15:47:30
asyncio.AbstractEventLoop.create_task()
  • References/Python/Python/Inputouput

AbstractEventLoop.create_task(coro) Schedule the execution of a

2025-01-10 15:47:30
asyncio.Handle.cancel()
  • References/Python/Python/Inputouput

cancel() Cancel the call. If the callback is already canceled or executed, this method has no effect.

2025-01-10 15:47:30
asyncio.WriteTransport.writelines()
  • References/Python/Python/Inputouput

writelines(list_of_data) Write a list (or any iterable) of data bytes to the transport. This is functionally equivalent to calling

2025-01-10 15:47:30
asyncio.AbstractEventLoop.call_later()
  • References/Python/Python/Inputouput

AbstractEventLoop.call_later(delay, callback, *args) Arrange for the callback to be called after the given delay

2025-01-10 15:47:30
select.poll.unregister()
  • References/Python/Python/Inputouput

poll.unregister(fd) Remove a file descriptor being tracked by a polling object. Just like the register() method

2025-01-10 15:47:30
selectors.PollSelector
  • References/Python/Python/Inputouput

class selectors.PollSelector

2025-01-10 15:47:30
selectors.BaseSelector.get_map()
  • References/Python/Python/Inputouput

abstractmethod get_map() Return a mapping of file objects to selector keys. This returns a

2025-01-10 15:47:30
asyncio.open_connection()
  • References/Python/Python/Inputouput

coroutine asyncio.open_connection(host=None, port=None, *, loop=None, limit=None, **kwds) A wrapper for

2025-01-10 15:47:30