Install & Compatibility
Where this runs
tested against v? · pip install
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
muslpy 3.10–3.95 runs
build_error
glibcpy 3.10–3.95 runs
build_error
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
extract_ascii_strings
✓ from binary2strings import extract_ascii_strings
✗ from binary2strings import extract_all_strings
extract_all_strings does not exist; use extract_ascii_strings or other specific extractors
extract_unicode_strings
✓ from binary2strings import extract_unicode_strings
Correct import for UTF-16 strings
extract_all_strings
✓
✗ import binary2strings
extract_all_strings is a function in the module namespace; call binary2strings.extract_all_strings()
Extract all strings (ASCII and Unicode) from a bytes object.
import binary2strings
data = b'Hello\x00World'
result = binary2strings.extract_all_strings(data)
print(result)
# Output: [('Hello', 0, 'UTF-16LE'), ('World', 6, 'UTF-16LE')]
Upgrade
Version history
0.1.13latest on PyPI · released Jul 20, 2023
Audit
Dependencies
numpyoptionalRequired for numpy array input support