Metadata-Version: 2.4
Name: binary-fun
Version: 0.0.0
Summary: A Python module that converts and decodes binary.
Author: Adonis Miclea
Author-email: tilik_87@yahoo.com
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: requires-python
Dynamic: summary

This is a Python module that decodes and converts binary

FUNCTIONS:

_convert() (pretty useless because it is just a support for Convert())
Convert() (converts a number to binary)
Decode() (decodes binary)

USAGE:

Example:

***
import binary_fun

binary_fun.Convert(15) #Converts 15 to a binary then prints it
print()
binary_fun.Decode(10100) #Decodes 10100 then prints it
***

IMPORTANT WARNING:

DO NOT USE IN FUNCTIONS (like print()) OR VARIABLES! IT WILL RETURN NONE! WAIT FOR FUTURE UPDATES.
