Metadata-Version: 2.1
Name: binaryconvert
Version: 2.2
Summary: A super easy Python tool that converts your text into binary language (8-bit).
Home-page: https://github.com/wfxey/binaryconvert
Download-URL: https://github.com/wfxey/binaryconvert/archive/refs/tags/v2.2.tar.gz
Author: wfxey
Author-email: projectsdi02@gmail.com
License: MIT
Keywords: binary,8-bit,text-to-binary
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Utilities
Description-Content-Type: text/markdown
License-File: LICENSE

# BinaryConvert
A super easy Python tool that converts your text into binary language (8-bit).

## Installation

```bash
pip install binaryconvert
```
# Example

<hr>

## ToBinary()

```python
from binaryconvert import convert

convert.ToBinary("Hi, my name is wfxey!")
```
### Output
```bash
01001000 01100001 01100001 01101100 01100001 01101100 01101100 01100001 01100001 01101111
```
<hr>

## ToText()

```python
from binaryconvert import convert

convert.ToText("01001000 01100001 01100001 01101100 01100001 01101100 01101100 01100001 01100001 01101111")
```
### Output
```bash
Hi, my name is wfxey!
```

<hr>
