Metadata-Version: 2.4
Name: binary_tool_nono819819
Version: 0.1.1
Summary: A simple tool to convert text to binary and back
Author-email: Noah Ohayon <noahohayon@salt-community.com>
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

Binary Tool
A lightweight, zero-dependency Python library for converting text to binary and binary back to text.

🚀 Installation
You can install this package via pip:

Bash
pip install binary-tool-nono819819
🛠 Usage
This library is designed to be simple and "Pythonic." Here is how you can use it in your projects:

Text to Binary
Convert any string into an 8-bit binary representation.

Python
from binary_tool import text_to_binary

text = "Hello"
binary_output = text_to_binary(text)

print(binary_output)
    # Output: 01001000 01100101 01101100 01101100 01101111
Binary to Text
Convert a space-separated string of binary back into readable text.

Python
from binary_tool import binary_to_text

binary_str = "01001000 01101001"
text_output = binary_to_text(binary_str)

print(text_output)
    # Output: Hi
📋 Features
Zero Dependencies: Uses only standard Python libraries.

8-bit Formatting: Ensures all binary output is padded to 8 bits for consistency.

UTF-8 Support: Handles standard text characters gracefully.

📝 License
This project is licensed under the MIT License - see the LICENSE file for details.
