Metadata-Version: 2.1
Name: PyConvertBinary
Version: 0.0.4
Summary: Basic Binary Converter
Home-page: 
Author: R3Pulse
Author-email: adrain911@gmail.com
License: MIT
Keywords: converter,binary,decimal
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Education
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.9
License-File: LICENSE.txt

This is a programme that converts binary to decimal, and decimal to binary.
DecToBin converts decimals to binary and BinToDec does the opposite. 
HexToDec converts hexadecimal to decimal and DecToHex does the opposite.
E.g. 
Input - print(DecToBin(5))
Output - 101
These functions only accept integers and string as an inputs.

Change Log
----------

0.0.1 (23/10/2022)
~~~~~~~~~~~~~~~~~~
-First Release


0.0.2 (24/10/2022)
~~~~~~~~~~~~~~~~~~
-DecToHex function added

0.0.3 (24/10/2022)
~~~~~~~~~~~~~~~~~~
-HexToDec function added
-Functions now accept string inputs

0.0.4 (25/10/2022)
~~~~~~~~~~~~~~~~~~
-Improved error messages
