Hello,
I need to manage several version of the digi python library https://github.com/digidotcom/xbee-python/releases
And normally in python to get the version of the package, I just do
import package_name
print(package_name.__version__)
However it doesn't work with the digi-xbee one. I have check and at least in the old release I a unable to find the __version__ file.
So how can I check the version of the digi xbee library that I am currently using from python.
Thanks in advance