Metadata-Version: 2.4
Name: nithilan
Version: 0.1.0
Summary: Small Python utilities for everyday programs
Author: Nithilan Vivek
Project-URL: Homepage, https://nithi.land
Keywords: utilities,factorial,terminal
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# nithilan

`nithilan` is a small collection of Python utilities for everyday programs.

## Installation

```bash
python -m pip install nithilan
```

## Usage

```python
from nithilan import ask, factorial

print(factorial(5))

if ask("Continue?"):
    print("Continuing")
```

`factorial` supports non-negative integers and real values supported by the gamma function. `ask` reads a single `y` or `n` response from an interactive Windows, macOS, or Linux terminal.
