bits/README.md

28 lines
586 B
Markdown
Raw Permalink Normal View History

2020-10-03 20:35:46 -05:00
# Bits
2020-10-03 20:39:16 -05:00
Helps manage your bits!
Intended to be compatible with Python 3.6+. Written and tested against Python
3.8.5 Ubuntu 20.04.1 LTS.
If something doesn't work in Python 3.6, it's a bug. Please report any such
bugs if they are encountered.
2021-04-13 22:06:08 -05:00
# PyPI
View on PyPI at [https://pypi.org/project/binary-bits/](https://pypi.org/project/binary-bits/)
Install from PyPI:
python3 -m pip install binary-bits --upgrade
Use in your project:
```python
import bits
my_bytes = bits.Bytes(bytes.fromhex('deadbeef'))
```
2020-10-27 23:44:12 -05:00
# Similar projects
## [py-flags](https://pypi.org/project/py-flags/)