I use EasySeedLinkClient to connect a seedlink server and receive data. To terminate a connection, I use CRTL+c and close(). But I suspect it is actually not properly terminating the connection with the server. How to make sure to do so? Should I rather use terminate?
If you are worried about CTRL-C not calling close(), I think you could wrap your code in a try/except KeyboardInterrupt maybe? No idea about these discussions about termination of seedlink connection…