In [11]:len(method),len(method1)
Out[11]:(117,148)
In [12]:[v for v in method if"server"in v or"connection"in v or"create" i
...: n v or"open"in v]
Out[12]:['create_subprocess_exec','create_subprocess_shell','create_task','open_connection','start_server']
In [13]:[v for v in method1 if"server"in v or"connection"in v or"create"...:in v or"open"in v]
Out[13]:['_accept_connection','_accept_connection2','_create_connection_transport','_create_server_getaddrinfo','create_connection','create_datagram_endpoint','create_future','create_server','create_task','create_unix_connection','create_unix_server']
In [14]:len(dir(asyncio)),len(dir(loop))
Out[14]:(117,148)