Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/janbrohl/bytesop
- Owner: janbrohl
- License: bsd-3-clause
- Created: 2016-04-03T18:27:59.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2021-08-08T10:14:27.000Z (over 3 years ago)
- Last Synced: 2024-10-13T04:02:38.224Z (about 1 month ago)
- Topics: hacktoberfest, python, python2, python3
- Language: C++
- Homepage: https://pypi.python.org/pypi/BytesOp
- Size: 16.6 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
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.