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

coroutine asyncio.sleep(delay, result=None, *, loop=None) Create a coroutine that completes after a given time

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

epoll.fromfd(fd) Create an epoll object from a given file descriptor.

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

coroutine AbstractEventLoop.create_unix_server(protocol_factory, path=None, *, sock=None, backlog=100, ssl=None) Similar to

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

asyncio.new_event_loop() Equivalent to calling get_event_loop_policy().new_event_loop().

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

class selectors.SelectSelector

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

DatagramTransport.sendto(data, addr=None) Send the data bytes to the remote peer given by addr (a transport-dependent

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

fd Underlying file descriptor.

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

class selectors.DevpollSelector

2025-01-10 15:47:30
select.kevent.flags
  • References/Python/Python/Inputouput

kevent.flags Filter action.

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

feed_data(data) Feed data bytes in the internal buffer. Any operations waiting for the data will be resumed.

2025-01-10 15:47:30