With a script that should start 3 different connection as client to 3 different servers, is it advisable to spawn the 3 clients? or it is unnecessary?
p1 = protocol.ClientCreator(reactor, test1
).connectTCP(Host, Port)
p2 = protocol.ClientCreator(reactor, test2
).connectTCP(Host2, Port)
p3 = protocol.ClientCreator(reactor, test3
).connectTCP(Host2, Port)