Replymessage unavailable
while True means do this code forever - aka infinite loop
while expects a condition to be true in order to run the loop
You hardcode it with True so the "condition" is always - well true
It usually bad to do that without any way of canceling them (which is why break is used)
You can try running your program without a break and see what happens (dont let it run for too long though, you might run out of memory)