Metadata-Version: 2.1
Name: pyinterconvert
Version: 0.1.4
Summary: A simple tool for interconversion between binary, decimal, octal and hexadecimal
Home-page: https://github.com/namanko/pyconvert
Author: ShadowRanger5
Author-email: namankrocks@gmail.com
License: MIT
Keywords: Converter
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.8
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# PyInterconvert
> A simple tool for interconversion of binary, decimal, hexadecimal and octal

## Current functions
- BinToDec
- BinToOct
- BinToHex
- DecToBin
- DecToOct
- DecTohex
- HexToBin
- OctToBin

For other Hexadecimal and Octal conversions the given functions can be used together as follows:-

```
BinToDec(HexToBin(arg)) #Hexadecimal to Decimal
BinToOct(HexToBin(arg)) #Hexadecimal to Octal
BinToDec(OctToBin(arg)) #Octal to Decimal
BinToHex(OctToBin(arg)) #Octal to Hexadecimal
```
**Arg is of type string**

## Sample Usage
```
from pyinterconvert import ConvClient

c = ConvClient

print(c.BinToOct(1010101))
#prints 125
```
**Please note that it is ConvClient and not ConvClient()**



