Metadata-Version: 2.1
Name: logicalbin
Version: 1.0
Author: BlueJFlamesLab
License: MIT
Requires-Python: >=3.0
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# LogicalBin V1.0

*A modern, Easy-To-Use library engaged in Binary and Logic Gate Calculations. Binary Additions, Subtractions, Bitwisers included all-in-one package with Truth tables.*

> A Simple and Lightweight library that helps you to do calculations with Binary and Logic gates.

---

## Features

- #### Logic Gate Oparations
- #### Binary Oparations
- #### Extended Features
- #### Easy to Use Functions
- #### Built for Binary Calculations

---

## Installation

### Install it via pip:

> pip install LogicalBin

### If installing from source:

```
git clone https://github.com/yourusername/LogicalBin.git
cd LogicalBin
pip install .
```
---

## Usage

> from Logicalbin import LGates / BinSum

### Example usage
```
result = LogicalBin.BinSum.Binary_Subtract(value1, value2)
print(result)
```

---

## Project Structure


LogicalBin/

â”œâ”€â”€ _init _.py

â”œâ”€â”€ LGates.py

â”œâ”€â”€ BinSum.py

â”œâ”€â”€ README.md

â”œâ”€â”€ LICENSE

â””â”€â”€ setup.py

---

## Examples

### Example 1: Get Truth Tables For Logic Gates:
> LGates.GATE.AND()

### Example 2: Add Two Binary Numbers:
> BinSum.binary_add('100101' , '100010')

---

## License
```
This project is licensed under the MIT License â€“ see the [LICENSE](./LICENSE) file for details.
```
