You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a normal unencrypted backup with only -i -o and -v parameters. I get: ImportError: cannot import name 'KaitaiStruct'
Kaitaistruct package is present in iTBR root. Running Python 3.6.5
Traceback (most recent call last):
File "C:\temp\iTunes_Backup_Reader-4.0\iTunes_Backup_Reader.py", line 18, in
from helpers import plist_parser, recreator
File "C:\temp\iTunes_Backup_Reader-4.0\helpers\recreator.py", line 17, in
from helpers import decryptor
File "C:\temp\iTunes_Backup_Reader-4.0\helpers\decryptor.py", line 17, in
from kaitaistruct import KaitaiStruct, KaitaiStream, BytesIO
ImportError: cannot import name 'KaitaiStruct'
The text was updated successfully, but these errors were encountered:
It seems that "from kaitaistruct import KaitaiStruct, KaitaiStream, BytesIO" is redundant as the kaitai lib is only referred to in the helpers/decryptor.py (code) and construct/core.py (comment) files. KaitaiStruct and KaitaiStream are not mentioned anywhere in the code (except the import line), and BytesIO is imported from the Python io library.
This is a normal unencrypted backup with only -i -o and -v parameters. I get: ImportError: cannot import name 'KaitaiStruct'
Kaitaistruct package is present in iTBR root. Running Python 3.6.5
Traceback (most recent call last):
File "C:\temp\iTunes_Backup_Reader-4.0\iTunes_Backup_Reader.py", line 18, in
from helpers import plist_parser, recreator
File "C:\temp\iTunes_Backup_Reader-4.0\helpers\recreator.py", line 17, in
from helpers import decryptor
File "C:\temp\iTunes_Backup_Reader-4.0\helpers\decryptor.py", line 17, in
from kaitaistruct import KaitaiStruct, KaitaiStream, BytesIO
ImportError: cannot import name 'KaitaiStruct'
The text was updated successfully, but these errors were encountered: