v3.1
This release focus on improving the Python binding:
- python: Added missing
permanent
boolean argument toDhtRunner.put()
- python: Added missing
cancelPut
method toDhtRunner
- python: Added missing configuration fields in DhtRunnerConfig, allowing to use features like the proxy server, peer discovery, and configure specific bound address, allowing to bind to a specific network interface.
- python: Added
SockAddr.resolve(hostname, service)
to allow buildingSockAddr
instances from a string representation of an IP address or hostname, and port or service name:> import opendht as dht > dht.SockAddr.resolve("bootstrap.jami.net", "4222") [<SockAddr '198.27.69.48:4222'>]