asyncio.gather(*coros_or_futures, loop=None, return_exceptions=False) Return a future aggregating results from the given coroutine
coroutine asyncio.create_subprocess_shell(cmd, stdin=None, stdout=None, stderr=None, loop=None, limit=None, **kwds) Run the
AbstractEventLoop.create_task(coro) Schedule the execution of a
cancel() Cancel the call. If the callback is already canceled or executed, this method has no effect.
writelines(list_of_data) Write a list (or any iterable) of data bytes to the transport. This is functionally equivalent to calling
AbstractEventLoop.call_later(delay, callback, *args) Arrange for the callback to be called after the given delay
poll.unregister(fd) Remove a file descriptor being tracked by a polling object. Just like the register() method
class selectors.PollSelector
abstractmethod get_map() Return a mapping of file objects to selector keys. This returns a
coroutine asyncio.open_connection(host=None, port=None, *, loop=None, limit=None, **kwds) A wrapper for
Page 16 of 28