Mar-27-2021, 03:24 PM
Hello everyone, my Python program connects to an API, is there any way to make it try and "auto reconnect" every 1 min to the said API if it gets disconnected?
My connection code is on a single thread.. so mechanically, I would need a way to just:
1. detect a disconnect, and
2. IF disconnect found, do a while loop on the thread.start()
3. untill connection restored?
This should be an interesting discussion and hopefully I learn alot from it but I am still pretty new, so simple explanations and code examples are the best
My connection code is on a single thread.. so mechanically, I would need a way to just:
1. detect a disconnect, and
2. IF disconnect found, do a while loop on the thread.start()
3. untill connection restored?
This should be an interesting discussion and hopefully I learn alot from it but I am still pretty new, so simple explanations and code examples are the best
