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
I'm testing the latest master branch to convert Accounting_English_Persian.BGL file to .csv, using Python35-32 on Windows.
The program gives me this error:
Traceback (most recent call last):
File "pyglossary\glossary.py", line 522, in read
Reader = self.readerClasses[format]
KeyError: 'BabylonBgl'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "ui\ui_tk.py", line 86, in CallWrapper__call__
return self.func(*args)
File "ui\ui_tk.py", line 728, in load
ex = self.glos.read(iPath, format=format)
File "pyglossary\glossary.py", line 529, in read
**options
File "pyglossary\plugins\babylon_bgl.py", line 2820, in read
if not reader.read():
File "pyglossary\plugins\babylon_bgl.py", line 1269, in read
if not self.readBlock(block):
File "pyglossary\plugins\babylon_bgl.py", line 1210, in readBlock
length = self.readBytes(1)
File "pyglossary\plugins\babylon_bgl.py", line 1252, in readBytes
buf = self.file.read(bytes)
File "C:\Python35-32\lib\gzip.py", line 274, in read
return self._buffer.read(size)
File "C:\Python35-32\lib\_compression.py", line 68, in readinto
data = self.read(len(byte_view))
File "C:\Python35-32\lib\gzip.py", line 452, in read
self._read_eof()
File "C:\Python35-32\lib\gzip.py", line 499, in _read_eof
hex(self._crc)))
OSError: CRC check failed 0x0 != 0x550f2e74
The main site shows its entries here. So I don't think it has a CRC error.
The text was updated successfully, but these errors were encountered:
Split into a package with 8 files
Fix bytes/str bugs (fix#54)
Fix CRC check bug (fix#55) by shipping and modifying gzip module:
https://hg.python.org/cpython/file/3.5/Lib/gzip.py
Migrate to Reader class
Rename bytes and str variables to b_* and u_*
Fix logic and a lot of cleanings
Split into a package with 8 files
Fix bytes/str bugs (fix#54)
Fix CRC check bug (fix#55) by shipping and modifying gzip module:
https://hg.python.org/cpython/file/3.5/Lib/gzip.py
Migrate to Reader class
Rename bytes and str variables to b_* and u_*
Fix logic and a lot of cleanings
I'm testing the latest master branch to convert Accounting_English_Persian.BGL file to .csv, using
Python35-32
onWindows
.The program gives me this error:
The main site shows its entries here. So I don't think it has a CRC error.
The text was updated successfully, but these errors were encountered: