Hey all,
I'm currently writing a patch for the python client side libraries to enable them to reconnect to intermittent gpsd instance.
1. Would the list be interested in getting a patch for this feature?
2. If so, what would the preferred invocation of this feature be? Current proposal:
My current implementation:
default mode:
`gps.gps` still defaults to connect-once-or-fail mode
reconnect mode:
```
self.stream = gps.gps(host=gpsd_host, port=gpsd_port, verbose=verbosity, reconnect=True)
```
(i.e. add the 'reconnect' keyword-argument); then the libraries will enable reconnect mode: