There is a method from the documents that looks like client.write_coils(1, [True]*8)
My assumption is that this will write True 8 times because how do I supply a list of addresses? I want to supply a list of 8 modbuss address and assign them all True, for the sake of example. The alternate way is use the singular write_coil from a loop, but since write_coils exists in the docs I am assuming it is the better solution