You can share the MISO and SCLK between devices, and then each device will have its own CS . Sort of:

In this case, Master is Pi and Slaves is MAX31855. SS (Slave Select) is the same as CS (Chip Select).
from max31855 import MAX31855, MAX31855Error cs_pin_1=24 clock_pin=23 data_pin=22 cs_pin_2=21 cs_pin_3=20 units = "f" thermocouple1=MAX31855(cs_pin_1, clock_pin, data_pin, units) thermocouple2=MAX31855(cs_pin_2, clock_pin, data_pin, units) thermocouple3=MAX31855(cs_pin_3, clock_pin, data_pin, units)
source share