Metadata-Version: 2.1
Name: bindecocthex
Version: 0.3
Summary: A package for binary, decimal, octal, and hexadecimal conversions
Home-page: https://git.selfmade.ninja/rsuriya/bindecocthex
Author: Suriya Ravichandran, Karthikeyan Ramesh
Author-email: rsuriya119@gmail.com
License: MIT
Keywords: python,binary,decimal,octal,hexadecimal,converter
Description-Content-Type: text/markdown


# bindecocthex

`bindecocthex` is a Python package that provides functionality for converting between decimal, binary, octal, and hexadecimal number representations.

## Installation

You can install `bindecocthex` using pip:

```
pip install bindecocthex
```
## Usage:

To use bindecocthex in your Python code, you can create an instance of the `bindecocthex` class and call its conversion methods. Here's a simple example:

```
from bindecocthex import bindecocthex

# Create an instance of bindecocthex
bdoh = bindecocthex()

# Convert decimal to binary
binary_result = bdoh.decimal_to_binary(42)
print("Decimal to Binary:", binary_result)

# Convert binary to decimal
decimal_result = bdoh.binary_to_decimal("101010")
print("Binary to Decimal:", decimal_result)

# Convert decimal to octal
octal_result = bdoh.decimal_to_octal(42)
print("Decimal to Octal:", octal_result)

# ... (similarly for other conversions)

# Main function (optional)
bdoh.main()
```

## License
```This project is licensed under the MIT License```
