SimpleBinary

Converts string to binary and binary to string.


Keywords
binary, convert, simplebinary
License
MIT
Install
pip install SimpleBinary==0.1

Documentation

SimpleBinary

Converts string to binary and binary to string.

Installation

Using pip3

pip3 install simplebinary

Clone

git clone https://github.com/Aikufurr/SimpleBinary
cd SimpleBinary
pip3 install .

Usage Example

>>> import simplebinary
>>> simplebinary.toBinary('abc123')
'011000010110001001100011001100010011001000110011'
>>> simplebinary.toString('011000010110001001100011001100010011001000110011')
'abc123'