I tried to use the example code provided in the readme and found a few errors/ issues:
- on line 10:
test.isConnected() should be test.is_connected()
- There is no main statement, so if you try to run the example as is, nothing happens. I added a simple:
if __name__=="__main__": runExample()
to solve this.
Other than that, it works as expected - Thank you!