Metadata-Version: 2.0
Name: binary-repr
Version: 0.1.0
Summary: Converts integers to binary representation.
Home-page: https://github.com/rolando/binary-repr
Author: Rolando Espinoza
Author-email: rolando at rmax.io
License: MIT
Keywords: binary representation
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5

===============================
Binary Representation
===============================

.. image:: https://img.shields.io/pypi/v/binary-repr.svg
        :target: https://pypi.python.org/pypi/binary-repr

.. image:: https://img.shields.io/travis/rolando/binary-repr.svg
        :target: https://travis-ci.org/rolando/binary-repr

.. image:: https://readthedocs.org/projects/binary-repr/badge/?version=latest
        :target: https://readthedocs.org/projects/binary-repr/?badge=latest
        :alt: Documentation Status


Converts integers to binary representation.

Yes, a Cython spinoff of ``numpy.binary_repr`` function.

* Free software: MIT license
* Documentation: https://binary-repr.readthedocs.org.

Features
--------

* TODO
  * this provides binary_repr function INT/LONG -> BYTES 1/0's
    * handle fixed width
    * signed/unsigned
  * the inverse binary repr is integer_repr BYTES -> LONG
    * unsigned / signed
    * always long


Credits
---------

This package was created with Cookiecutter_ and the `audreyr/cookiecutter-pypackage`_ project template.

.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage


=======
History
=======

0.1.0 (2016-06-17)
------------------

* First release on PyPI.
* Pure python versions of ``binary_repr`` and ``integer_repr``.


