Metadata-Version: 2.3
Name: binary_to_text
Version: 0.0.2
Summary: Binary to text
Author: Muka
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.10.0
Description-Content-Type: text/markdown


Hello this is my first library this library converts binary code into text and vice versa
----------

Converts a string of binary code to text
----------
    translator.binary_to_text(binary_code)

Converts a string of text to binary code
----------
    translator.text_to_binary(text)
Usage example
----------
Binary code to text

    binary_code = '01001000 01100101 01101100 01101100 01101111'
    text = translator.binary_to_text(binary_code)
    print(f"Translation of binary code '{binary_code}' to text: '{text}'")

Text to binary code

    text = 'Hello'
    binary_code = translator.text_to_binary(text)
    print(f"Translation of text '{text}' to binary code: '{binary_code}'")