In 2.x `struct` is available as `ustruct`. We need to make sure all drivers included in the bundle will work with 3.x which has renamed it to `struct`. For backwards compatiblity it should be: ```python try: import struct except ImportError: import ustruct as struct ```