binaryornot


Namebinaryornot JSON
Version 0.4.4 PyPI version JSON
download
home_pagehttps://github.com/audreyr/binaryornot
SummaryUltra-lightweight pure Python package to check if a file is binary or text.
upload_time2017-08-03 15:55:25
maintainer
docs_urlNone
authorAudrey Roy Greenfeld
requires_python
licenseBSD
keywords binaryornot
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI
coveralls test coverage No coveralls.
            =============================
BinaryOrNot
=============================

.. image:: https://img.shields.io/pypi/v/binaryornot.svg?style=flat
      :target: https://pypi.python.org/pypi/binaryornot

.. image:: https://readthedocs.org/projects/binaryornot/badge/?version=latest
    :target: http://binaryornot.readthedocs.io/en/latest/?badge=latest
    :alt: Documentation Status


.. image:: https://pyup.io/repos/github/audreyr/binaryornot/shield.svg
   :target: https://pyup.io/repos/github/audreyr/binaryornot/
   :alt: Updates

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: https://binaryornot.readthedocs.io

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:

* http://stackoverflow.com/questions/898669/how-can-i-detect-if-a-file-is-binary-non-text-in-python
* http://stackoverflow.com/questions/1446549/how-to-identify-binary-and-text-files-using-python
* http://code.activestate.com/recipes/173220/
* http://eli.thegreenplace.net/2011/10/19/perls-guess-if-file-is-text-or-binary-implemented-in-python/

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 Perl'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.

Builds
------

Linux (Ubuntu 12.04 LTS Server Edition 64 bit):

.. image:: https://img.shields.io/travis/audreyr/binaryornot/master.svg
        :target: https://travis-ci.org/audreyr/binaryornot

Windows (Windows Server 2012 R2 (x64)):

.. image:: https://img.shields.io/appveyor/ci/audreyr/binaryornot/master.svg
        :target: https://ci.appveyor.com/project/audreyr/binaryornot

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.4 (2017-04-13)
~~~~~~~~~~~~~~~~~~

* Notify users for file i/o issues. Thanks @lukehinds!


0.4.3 (2017-04-13)
~~~~~~~~~~~~~~~~~~

* Restricted chardet to anything 3.0.2 or higher due to https://github.com/chardet/chardet/issues/113. Thanks @dan-blanchard for the quick fix!

0.4.2 (2017-04-12)
~~~~~~~~~~~~~~~~~~

* Restricted chardet to anything under 3.0 due to https://github.com/chardet/chardet/issues/113
* Added pyup badge
* Added utilities for pushing new versions up

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 environments. (#16) Thanks `@hackebrot`_ `@pydanny`_.
* Handle LookupError when detecting encoding. (#17) Thanks `@DRMacIver`_.


.. _`@pombredanne`: https://github.com/pombredanne
.. _`@pydanny`: https://github.com/pydanny
.. _`@asmeurer`: https://github.com/asmeurer
.. _`@audreyr`: https://github.com/audreyr
.. _`@DRMacIver`: https://github.com/DRMacIver
.. _`@hackebrot`: https://github.com/hackebrot

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`_.

.. _`@vincentbernat`: https://github.com/vincentbernat
.. _`@scop`: https://github.com/scop

0.2.0 (2013-09-22)
~~~~~~~~~~~~~~~~~~

* Complete rewrite of everything. Thanks `@ncoghlan`_.

.. _`@ncoghlan`: https://github.com/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.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/audreyr/binaryornot",
    "name": "binaryornot",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "binaryornot",
    "author": "Audrey Roy Greenfeld",
    "author_email": "aroy@alum.mit.edu",
    "download_url": "https://files.pythonhosted.org/packages/a7/fe/7ebfec74d49f97fc55cd38240c7a7d08134002b1e14be8c3897c0dd5e49b/binaryornot-0.4.4.tar.gz",
    "platform": "",
    "description": "=============================\nBinaryOrNot\n=============================\n\n.. image:: https://img.shields.io/pypi/v/binaryornot.svg?style=flat\n      :target: https://pypi.python.org/pypi/binaryornot\n\n.. image:: https://readthedocs.org/projects/binaryornot/badge/?version=latest\n    :target: http://binaryornot.readthedocs.io/en/latest/?badge=latest\n    :alt: Documentation Status\n\n\n.. image:: https://pyup.io/repos/github/audreyr/binaryornot/shield.svg\n   :target: https://pyup.io/repos/github/audreyr/binaryornot/\n   :alt: Updates\n\nUltra-lightweight pure Python package to guess whether a file is binary or text,\nusing a heuristic similar to Perl's `pp_fttext` and its analysis by @eliben.\n\n* Free software: BSD license\n* Documentation: https://binaryornot.readthedocs.io\n\nStatus\n------\n\nIt works, and people are using this package in various places. But it doesn't cover all edge cases yet.\n\nThe code could be improved. Pull requests welcome! As of now, it is based on these snippets, but that may change:\n\n* http://stackoverflow.com/questions/898669/how-can-i-detect-if-a-file-is-binary-non-text-in-python\n* http://stackoverflow.com/questions/1446549/how-to-identify-binary-and-text-files-using-python\n* http://code.activestate.com/recipes/173220/\n* http://eli.thegreenplace.net/2011/10/19/perls-guess-if-file-is-text-or-binary-implemented-in-python/\n\nFeatures\n--------\n\nHas tests for these file types:\n\n* Text: .txt, .css, .json, .svg, .js, .lua, .pl, .rst\n* Binary: .png, .gif, .jpg, .tiff, .bmp, .DS_Store, .eot, .otf, .ttf, .woff, .rgb\n\nHas tests for numerous encodings.\n\nWhy?\n----\n\nYou may be thinking, \"I can write this in 2 lines of code?!\"\n\nIt's actually not that easy. Here's a great article about how Perl's\nheuristic to guess file types works: http://eli.thegreenplace.net/2011/10/19/perls-guess-if-file-is-text-or-binary-implemented-in-python/\n\nAnd that's just where we started. Over time, we've found more edge cases and\nour heuristic has gotten more complex.\n\nAlso, this package saves you from having to write and thoroughly test\nyour code with all sorts of weird file types and encodings, cross-platform.\n\nBuilds\n------\n\nLinux (Ubuntu 12.04 LTS Server Edition 64 bit):\n\n.. image:: https://img.shields.io/travis/audreyr/binaryornot/master.svg\n        :target: https://travis-ci.org/audreyr/binaryornot\n\nWindows (Windows Server 2012 R2 (x64)):\n\n.. image:: https://img.shields.io/appveyor/ci/audreyr/binaryornot/master.svg\n        :target: https://ci.appveyor.com/project/audreyr/binaryornot\n\nCredits\n-------\n\n* Special thanks to Eli Bendersky (@eliben) for his writeup explaining the heuristic and his implementation, which this is largely based on.\n* 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\n\n\n\n\nHistory\n-------\n\n0.4.4 (2017-04-13)\n~~~~~~~~~~~~~~~~~~\n\n* Notify users for file i/o issues. Thanks @lukehinds!\n\n\n0.4.3 (2017-04-13)\n~~~~~~~~~~~~~~~~~~\n\n* Restricted chardet to anything 3.0.2 or higher due to https://github.com/chardet/chardet/issues/113. Thanks @dan-blanchard for the quick fix!\n\n0.4.2 (2017-04-12)\n~~~~~~~~~~~~~~~~~~\n\n* Restricted chardet to anything under 3.0 due to https://github.com/chardet/chardet/issues/113\n* Added pyup badge\n* Added utilities for pushing new versions up\n\n0.4.0 (2015-08-21)\n~~~~~~~~~~~~~~~~~~\n\n* Enhanced detection for some binary streams and UTF texts. (#10, 11) Thanks `@pombredanne`_.\n* Set up Appveyor for continuous testing on Windows. Thanks `@pydanny`_.\n* Update link to Perl source implementation. (#9) Thanks `@asmeurer`_ `@pombredanne`_ `@audreyr`_.\n* Handle UnicodeDecodeError in check. (#12) Thanks `@DRMacIver`_.\n* Add very simple Hypothesis based tests. (#13) Thanks `@DRMacIver`_.\n* Use setup to determine requirements and remove redundant requirements.txt. (#14) Thanks `@hackebrot`_.\n* Add documentation status badge to README.rst. (#15) Thanks `@hackebrot`_.\n* Run tox in travis.yml. Add pypy and Python 3.4 to tox environments. (#16) Thanks `@hackebrot`_ `@pydanny`_.\n* Handle LookupError when detecting encoding. (#17) Thanks `@DRMacIver`_.\n\n\n.. _`@pombredanne`: https://github.com/pombredanne\n.. _`@pydanny`: https://github.com/pydanny\n.. _`@asmeurer`: https://github.com/asmeurer\n.. _`@audreyr`: https://github.com/audreyr\n.. _`@DRMacIver`: https://github.com/DRMacIver\n.. _`@hackebrot`: https://github.com/hackebrot\n\n0.3.0 (2014-05-05)\n~~~~~~~~~~~~~~~~~~\n\n* Include tests, docs in source package. (#6) Thanks `@vincentbernat`_.\n* Drop unnecessary shebangs and executable bits. (#8) Thanks `@scop`_.\n* Generate string of printable extended ASCII bytes only once. (#7) Thanks `@scop`_.\n* Make number of bytes to read parametrizable. (#7) Thanks `@scop`_.\n\n.. _`@vincentbernat`: https://github.com/vincentbernat\n.. _`@scop`: https://github.com/scop\n\n0.2.0 (2013-09-22)\n~~~~~~~~~~~~~~~~~~\n\n* Complete rewrite of everything. Thanks `@ncoghlan`_.\n\n.. _`@ncoghlan`: https://github.com/ncoghlan\n\n0.1.1 (2013-08-17)\n~~~~~~~~~~~~~~~~~~\n\n* Tests pass under Python 2.6, 2.7, 3.3, PyPy.\n\n\n0.1.0 (2013-08-17)\n~~~~~~~~~~~~~~~~~~\n\n* First release on PyPI.\n",
    "bugtrack_url": null,
    "license": "BSD",
    "summary": "Ultra-lightweight pure Python package to check if a file is binary or text.",
    "version": "0.4.4",
    "split_keywords": [
        "binaryornot"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "md5": "7a69d00f3c384693c9616c3381c411a3",
                "sha256": "b8b71173c917bddcd2c16070412e369c3ed7f0528926f70cac18a6c97fd563e4"
            },
            "downloads": -1,
            "filename": "binaryornot-0.4.4-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "7a69d00f3c384693c9616c3381c411a3",
            "packagetype": "bdist_wheel",
            "python_version": "3.6",
            "requires_python": null,
            "size": 9006,
            "upload_time": "2017-08-03T15:55:31",
            "upload_time_iso_8601": "2017-08-03T15:55:31.230298Z",
            "url": "https://files.pythonhosted.org/packages/24/7e/f7b6f453e6481d1e233540262ccbfcf89adcd43606f44a028d7f5fae5eb2/binaryornot-0.4.4-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "09c0b7f5f3f7c881e2f306780eac7128",
                "sha256": "359501dfc9d40632edc9fac890e19542db1a287bbcfa58175b66658392018061"
            },
            "downloads": -1,
            "filename": "binaryornot-0.4.4.tar.gz",
            "has_sig": false,
            "md5_digest": "09c0b7f5f3f7c881e2f306780eac7128",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 371054,
            "upload_time": "2017-08-03T15:55:25",
            "upload_time_iso_8601": "2017-08-03T15:55:25.080182Z",
            "url": "https://files.pythonhosted.org/packages/a7/fe/7ebfec74d49f97fc55cd38240c7a7d08134002b1e14be8c3897c0dd5e49b/binaryornot-0.4.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2017-08-03 15:55:25",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "audreyr",
    "github_project": "binaryornot",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": false,
    "appveyor": true,
    "tox": true,
    "lcname": "binaryornot"
}
        
Elapsed time: 0.01304s