All Versions
40
Latest Version
Avg Release Cycle
26 days
Latest Release
320 days ago
Changelog History
Page 4
Changelog History
Page 4
-
v1.3.1 Changes
October 11, 2019 -
v1.3.0 Changes
September 30, 2019๐ Changes :
- ๐ Feature : Now support
unicodedata2
backport. To benefit from it install usingpip install charset-normalizer[UnicodeDataBackport]
. Python 3.7 have UnicodeData v11. You could upgrade it to v12. - ๐ Feature : Added preemptive behaviour. Looking for a declared encoding. Using positional parameter
preemptive_behaviour
. Default to True. Does not take declared encoding for it, testing it first. - ๐ Improvement : Added aliases to CharsetNormalizerMatches class.
CharsetDetector
;EncodingDetector
andCharsetDoctor
.
- ๐ Feature : Now support
-
v1.2.0 Changes
September 28, 2019๐ Changes :
- ๐ Feature : Added
has_submatch
,percent_chaos
andpercent_coherence
properties on single match object. - ๐ Improvement :
best()
method of CharsetNormalizerMatches has been rewritten for better readability. - ๐ Feature : Added
explain
boolean positional parameter to print out what actually happen when searching for a match. - ๐ Improvement : Detection has been globally improved.
- ๐ Feature : You can exclude some encoding when searching for a match with parameter
cp_exclusion
. List of str. forfrom_bytes
from_path
andfrom_fp
. - ๐ Feature : You can limit the search to some encoding when looking for a match with parameter
cp_isolation
. List of str. forfrom_bytes
from_path
andfrom_fp
. - ๐ Feature :
import charset_normalizer
is enough to provide additional help when you encounter UnicodeDecodeError exception.
- ๐ Feature : Added
-
v1.1.1 Changes
September 23, 2019๐ Changes :
- ๐ Bugfix :
from_bytes
parameters steps and chunk_size were not adapted to sequence len if provided values were not fitted to content. Therefore could lead to misdetection on small content.
- ๐ Bugfix :
-
v1.1.0 Changes
September 21, 2019 -
v1.0.0
September 17, 2019 -
v0.3 Changes
September 12, 2019- ๐ Improvement on detection
- ๐ Performance loss to expect
- โ Added --threshold option to CLI
-
v0.2.3 Changes
September 06, 2019- ๐ Bugfix on UTF 7 support
- Legacy detect(byte_str) method
-
v0.2.2 Changes
September 04, 2019RC 5
- ๐ BOM support (Unicode mostly)
- Chaos prober improved on small text
-
v0.2.1 Changes
September 03, 2019RC 4
- ๐ Probe Chaos: Code cleanup, performance review and accuracy improved