coroutine AbstractEventLoop.create_server(protocol_factory, host=None, port=None, *, family=socket.AF_UNSPEC, flags=socket.AI_PASSIVE, sock=None, backlog=100, ssl=None, reuse_address=None, reuse_port=None)
Create a TCP server (socket type SOCK_STREAM) bound to host and port.
Return a Server object, its sockets attribute contains created sockets. Use the Server.close() method to stop the server: close listening sockets.
Parameters:
The host parameter can be a string, in that case the TCP serv