python-ogn-client/ogn/client
Anze Kolar 13cc75cf03 Allow client to do sequential connect-disconnect
With introduction of the kill switch it was impossible to restart the
consumption of the OGN messages after a .disconnect() method has been
called.

This commit resets the kill flag after .connect() has been called.

Minimal example:

```
client = AprsClient(aprs_user='testuser', aprs_filter='')
client.connect()
client.run(callback=lambda x: x, autoreconnect=True)
...
client.disconnect()
client.connect()
client.run()
```
2017-07-20 15:28:01 +02:00
..
__init__.py client: Import class AprsClient at package level 2016-03-08 02:46:11 +01:00
client.py Allow client to do sequential connect-disconnect 2017-07-20 15:28:01 +02:00
settings.py Release v0.7.1 2017-06-05 10:07:04 +02:00