Metadata-Version: 2.1
Name: hc_div
Version: 0.2.0
Summary: Default template for PDM package
Author-email: NishNovae <raecrowned@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/NishNovae/hc_calculation
Project-URL: Issues, https://github.com/NishNovae/hc_calculation/issues
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# hc_calculation

## Description

Python package `hc_div`, which is a dependency for the package `simpleCalc_cmd`. 

## Installation

```
$ pip install hc_div
```

Alternatively, it is automatically installed when you install `simpleCalc_cmd`, which can be done by
```
$ pip install simpleCalc_cmd
```
For more information, refer [simpleCalc_cmd github](https://github.com/hamsunwoo/simpleCalc_cmd)

## What does it do?
This package holds a simple function `div` which take 2 integer in-line variables and calculates the corresponding integer division operation. Handles errors if in-line variables are in the wrong format or number.

Specifically, it calculates division in `QUOTIENT remainder REMAINDER` format, where `QUOTIENT` and `REMAINDER` are corresponding calculated values.

For additional usages, look at `simpleCalc_cmd` github or read below.

### Package Import example

```
from hc_add.hc_add import add
add()
```
