Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/janbrohl/bytesop

BytesOp is an extension library providing fast bitwise operations on bytes-like objects for Python 2 and 3.
https://github.com/janbrohl/bytesop

hacktoberfest python python2 python3

Last synced: about 1 month ago
JSON representation

BytesOp is an extension library providing fast bitwise operations on bytes-like objects for Python 2 and 3.

Awesome Lists containing this project

README

        

BytesOp
=======

.. image:: https://travis-ci.org/janbrohl/BytesOp.svg?branch=master
:target: https://travis-ci.org/janbrohl/BytesOp
`🍕Buy me a Pizza `_

BytesOp is an extension library providing fast bitwise operations on bytes-like objects for Python 2 and 3.

Functions in module bytesop
---------------------------

op_and(...)
AND two bytes-like objects.

op_nand(...)
NAND two bytes-like objects.

op_nor(...)
NOR two bytes-like objects.

op_not(...)
NOT a bytes-like object.

op_or(...)
OR two bytes-like objects.

op_xnor(...)
XNOR (NXOR) two bytes-like objects.

op_xor(...)
XOR two bytes-like objects.