Ultra-lightweight pure Python package to check if a file is binary or text.
Project description
Ultra-lightweight pure Python package to guess whether a file is binary or text, using a heuristic similar to Perl’s pp_fttext and its analysis by @eliben.
Free software: BSD license
Documentation: http://binaryornot.readthedocs.org
Status
It works, and people are using this package in various places. But it doesn’t cover all edge cases yet.
The code could be improved. Pull requests welcome! As of now, it is based on these snippets, but that may change:
Features
Has tests for these file types:
Text: .txt, .css, .json, .svg, .js, .lua, .pl, .rst
Binary: .png, .gif, .jpg, .tiff, .bmp, .DS_Store, .eot, .otf, .ttf, .woff, .rgb
Has tests for numerous encodings.
Why?
You may be thinking, “I can write this in 2 lines of code?!”
It’s actually not that easy. Here’s a great article about how perldoc’s heuristic to guess file types works: http://eli.thegreenplace.net/2011/10/19/perls-guess-if-file-is-text-or-binary-implemented-in-python/
And that’s just where we started. Over time, we’ve found more edge cases and our heuristic has gotten more complex.
Also, this package saves you from having to write and thoroughly test your code with all sorts of weird file types and encodings, cross-platform.
Credits
Special thanks to Eli Bendersky (@eliben) for his writeup explaining the heuristic and his implementation, which this is largely based on.
Source code from the portion of Perl’s pp_fttext that checks for textiness: https://github.com/Perl/perl5/blob/v5.23.1/pp_sys.c#L3527-L3587
History
0.4.0 (2015-08-21)
Enhanced detection for some binary streams and UTF texts. (#10, 11) Thanks @pombredanne.
Set up Appveyor for continuous testing on Windows. Thanks @pydanny.
Update link to Perl source implementation. (#9) Thanks @asmeurer @pombredanne @audreyr.
Handle UnicodeDecodeError in check. (#12) Thanks @DRMacIver.
Add very simple Hypothesis based tests. (#13) Thanks @DRMacIver.
Use setup to determine requirements and remove redundant requirements.txt. (#14) Thanks @hackebrot.
Add documentation status badge to README.rst. (#15) Thanks @hackebrot.
Run tox in travis.yml. Add pypy and Python 3.4 to tox enviroments. (#16) Thanks @hackebrot @pydanny.
Handle LookupError when detecting encoding. (#17) Thanks @DRMacIver.
0.3.0 (2014-05-05)
Include tests, docs in source package. (#6) Thanks @vincentbernat.
Drop unnecessary shebangs and executable bits. (#8) Thanks @scop.
Generate string of printable extended ASCII bytes only once. (#7) Thanks @scop.
Make number of bytes to read parametrizable. (#7) Thanks @scop.
0.2.0 (2013-09-22)
Complete rewrite of everything. Thanks @ncoghlan.
0.1.1 (2013-08-17)
Tests pass under Python 2.6, 2.7, 3.3, PyPy.
0.1.0 (2013-08-17)
First release on PyPI.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file binaryornot-0.4.0.tar.gz
.
File metadata
- Download URL: binaryornot-0.4.0.tar.gz
- Upload date:
- Size: 370.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ab0f387b28912ac9c300db843461359e2773da3b922ae378ab69b0d85b288ec8 |
|
MD5 | aa08df1c8cc72a8e7e2e952479ca6d4c |
|
BLAKE2b-256 | 52699ca055b887ccc841fa2d0265aa2599c9d63bc57d3d421dfcda874e0ad3ef |
File details
Details for the file binaryornot-0.4.0-py2.py3-none-any.whl
.
File metadata
- Download URL: binaryornot-0.4.0-py2.py3-none-any.whl
- Upload date:
- Size: 8.2 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4c8326ceb3727f4ff7011d7f61b7bca15cca194e2288013a73d5ccaf56d3a18b |
|
MD5 | e85c8ce517c17e577ef178546abaa00e |
|
BLAKE2b-256 | be22911b13222e10d32b3d5c92302b7fe017854ed98e6fdb62bc1ecbd2546e79 |